myvideogamelist.com/config/global/pages.php
Jimmy Brancaccio b39ecf1638 Initial Commit
The initial public commit of MVGL website code.
2024-01-14 13:51:43 -06:00

119 lines
3.2 KiB
PHP

<?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',
),
),
),
);