Initial Commit
The initial public commit of MVGL website code.
This commit is contained in:
commit
b39ecf1638
2043 changed files with 215154 additions and 0 deletions
119
config/global/pages.php
Normal file
119
config/global/pages.php
Normal file
|
@ -0,0 +1,119 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
'' => array(
|
||||
'title' => 'Dashboard',
|
||||
'description' => '',
|
||||
'view' => 'index',
|
||||
'layout' => array(
|
||||
'page-title' => array(
|
||||
'description' => true,
|
||||
'breadcrumb' => false,
|
||||
),
|
||||
),
|
||||
'assets' => array(
|
||||
'custom' => array(
|
||||
'js' => array(),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
'login' => array(
|
||||
'title' => 'Login',
|
||||
'assets' => array(
|
||||
'custom' => array(
|
||||
'js' => array(
|
||||
'js/custom/authentication/sign-in/general.js',
|
||||
),
|
||||
),
|
||||
)
|
||||
),
|
||||
'register' => array(
|
||||
'title' => 'Register',
|
||||
'assets' => array(
|
||||
'custom' => array(
|
||||
'js' => array(
|
||||
'js/custom/authentication/sign-up/general.js',
|
||||
),
|
||||
),
|
||||
)
|
||||
),
|
||||
'forgot-password' => array(
|
||||
'title' => 'Forgot Password',
|
||||
'assets' => array(
|
||||
'custom' => array(
|
||||
'js' => array(
|
||||
'js/custom/authentication/password-reset/password-reset.js',
|
||||
),
|
||||
),
|
||||
)
|
||||
),
|
||||
|
||||
'log' => array(
|
||||
'audit' => array(
|
||||
'title' => 'Audit Log',
|
||||
'assets' => array(
|
||||
'custom' => array(
|
||||
'css' => array(
|
||||
'plugins/custom/datatables/datatables.bundle.css',
|
||||
),
|
||||
'js' => array(
|
||||
'plugins/custom/datatables/datatables.bundle.js',
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
'system' => array(
|
||||
'title' => 'System Log',
|
||||
'assets' => array(
|
||||
'custom' => array(
|
||||
'css' => array(
|
||||
'plugins/custom/datatables/datatables.bundle.css',
|
||||
),
|
||||
'js' => array(
|
||||
'plugins/custom/datatables/datatables.bundle.js',
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
'account' => array(
|
||||
'overview' => array(
|
||||
'title' => 'Account Overview',
|
||||
'view' => 'account/overview/overview',
|
||||
'assets' => array(
|
||||
'custom' => array(
|
||||
'js' => array(
|
||||
'js/custom/widgets.js',
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
'settings' => array(
|
||||
'title' => 'Account Settings',
|
||||
'assets' => array(
|
||||
'custom' => array(
|
||||
'js' => array(
|
||||
'js/custom/account/settings/profile-details.js',
|
||||
'js/custom/account/settings/signin-methods.js',
|
||||
'js/custom/modals/two-factor-authentication.js',
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
'users' => array(
|
||||
'title' => 'User List',
|
||||
|
||||
'*' => array(
|
||||
'title' => 'Show User',
|
||||
|
||||
'edit' => array(
|
||||
'title' => 'Edit User',
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue