21 lines
511 B
PHP
21 lines
511 B
PHP
<?php
|
|
/**
|
|
* Access file contain all constant variables declaration which will be globally accessible for access event.
|
|
*/
|
|
|
|
return [
|
|
// Configurations for the user
|
|
'users' => [
|
|
// The name of the super administrator role
|
|
'super_admin_role' => 'Super-Admin',
|
|
|
|
// The name of the super administrator role
|
|
'admin_role' => 'Admin',
|
|
|
|
// The default role all new registered users get added to
|
|
'default_role' => 'Admin',
|
|
|
|
'shravak' => 'Shravak'
|
|
]
|
|
];
|