20 lines
523 B
PHP
20 lines
523 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
return [
|
||
|
|
/*
|
||
|
|
|--------------------------------------------------------------------------
|
||
|
|
| Admin Menu Configuration
|
||
|
|
|--------------------------------------------------------------------------
|
||
|
|
|
|
||
|
|
| Configuration for the admin panel menu system.
|
||
|
|
|
|
||
|
|
*/
|
||
|
|
|
||
|
|
'admin_menu' => [
|
||
|
|
// Disable caching to avoid serialization issues with closures
|
||
|
|
// TODO: Fix in core-php by evaluating closures before caching
|
||
|
|
'cache_enabled' => false,
|
||
|
|
'cache_ttl' => 300,
|
||
|
|
],
|
||
|
|
];
|