-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVERSION
More file actions
48 lines (38 loc) · 1.76 KB
/
Copy pathVERSION
File metadata and controls
48 lines (38 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
v1.0.70
git add .
git commit -m "feat: breakdown update v1.0.70"
git push
git push origin main -f
git push
git tag v1.0.70
git push origin v1.0.70
- Fix layout_asset('', '', '') output
# Working on next
--------------------------------
Add Module to .config.php
/**
* App modules
*/
const MODULES = [
// System Modules
'Dashboard' => "settings/Dashboard.php",
'FrontendPage' => "settings/FrontendPage.php",
// User Modules
'User' => "models/User.php",
'UserTrait' => "models/UserTrait.php",
'Blog' => "models/common/blog/Blog.php",
'BlogCategory' => "models/common/blog/BlogCategory.php",
"Inbox" => "models/common/message/Inbox.php",
"ContactUs" => "models/common/message/ContactUs.php",
"SupportTicket" => "models/common/message/SupportTicket.php",
"Faqs" => "models/common/faqs/Faqs.php",
"Portfolio" => "models/common/portfolio/Portfolio.php",
"Callback" => "models/common/callback/Callback.php",
"NewsLetterSubscriber" => "models/common/newsletter/NewsLetterSubscriber.php",
"NewsLetter" => "models/common/newsletter/NewsLetter.php",
"Testimony" => "models/common/testimony/Testimony.php",
"CopyrightInfringement" => "models/common/Policy/CopyrightInfringement.php",
"GameApi" => "api/GameApi.php",
"AuthApi" => "api/AuthApi.php",
"BootstrapPaginationTemplate" => "/resources/views/layouts/bootstrap/inc/BootstrapPaginationTemplate.php"
];