Index: trunk/core/units/admin/admin_config.php =================================================================== diff -u -N -r6703 -r7391 --- trunk/core/units/admin/admin_config.php (.../admin_config.php) (revision 6703) +++ trunk/core/units/admin/admin_config.php (.../admin_config.php) (revision 7391) @@ -5,6 +5,9 @@ 'EventHandlerClass' => Array('class' => 'AdminEventsHandler', 'file' => 'admin_events_handler.php', 'build_event' => 'OnBuild'), 'TagProcessorClass' => Array('class' => 'AdminTagProcessor', 'file' => 'admin_tag_processor.php', 'build_event' => 'OnBuild'), + 'QueryString' => Array( + 1 => 'event', + ), 'TitlePresets' => Array( 'tree_root' => Array('format' => '!la_section_overview!'), @@ -15,37 +18,38 @@ 'tree_tools' => Array('format' => '!la_section_overview!'), - 'system_tools' => Array('format' => '!la_section_system!'), + 'system_tools' => Array('format' => '!la_title_SystemTools!'), 'no_permissions' => Array('format' => '!la_title_NoPermissions!'), - ), - 'Sections' => Array( - 'in-portal:root' => Array( - 'parent' => null, - 'icon' => 'site', - 'label' => $this->Application->ConfigValue('Site_Name'), - 'url' => Array('t' => 'sections_list', 'pass' => 'm', 'pass_section' => true, 'no_amp' => 1), - 'permissions' => Array('advanced:admin_login', 'advanced:front_login'), - 'priority' => 0, - 'type' => stTREE, - ), + 'column_picker' => Array('format' => '!la_title_ColumnPicker!'), ), - ); + 'PermSection' => array('main' => 'in-portal:service'), + 'Sections' => Array( + 'in-portal:root' => Array( + 'parent' => null, + 'icon' => 'site', + 'label' => $this->Application->ConfigValue('Site_Name'), + 'url' => Array('t' => 'sections_list', 'pass' => 'm', 'pass_section' => true, 'no_amp' => 1), + 'permissions' => Array('advanced:admin_login', 'advanced:front_login'), + 'priority' => 0, + 'type' => stTREE, + ), - $application =& kApplication::Instance(); - if ($application->isDebugMode()) { - $config['Sections']['in-portal:service'] = Array( + 'in-portal:service' => Array( 'parent' => 'in-portal:tools', - 'icon' => 'in-portal:conf_general', + 'icon' => 'conf_general', 'label' => 'la_tab_Service', 'url' => Array('t' => 'tools/system_tools', 'pass' => 'm'), 'permissions' => Array('view'), 'priority' => 10, + 'debug_only' => true, 'type' => stTREE, - ); - } + ), + ), + ); + ?> \ No newline at end of file