Skip to content

Commit

Permalink
Some things under configuration on menu should also be on module fron…
Browse files Browse the repository at this point in the history
…tend
  • Loading branch information
chrisgraham committed Dec 12, 2017
1 parent 6bc4ffd commit 44b0299
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 1 deletion.
50 changes: 49 additions & 1 deletion adminzone/pages/modules/admin_config.php
Expand Up @@ -309,15 +309,63 @@ public function config_choose()
'URL' => $url,
)));
}

$categories_tpl->attach(do_template('COMCODE_SUBTITLE', array(
'_GUID' => '7fde99ae81367fb7405e94b6731a7d9x',
'TITLE' => do_lang('DEEPER_CONFIGURATION'),
'LEVEL' => '2',
)));

$categories_tpl->attach(do_template('INDEX_SCREEN_FANCIER_ENTRY', array(
'_GUID' => '6fde99ae81367fb7405e94b6731a7d9a',
'COUNT' => null,
'TITLE' => '',
'URL' => get_base_url() . '/config_editor.php',
'URL' => build_url(array('page' => '_SELF', 'type' => 'base'), '_SELF'),
'NAME' => do_lang_tempcode('BASE_CONFIGURATION'),
'DESCRIPTION' => do_lang_tempcode('DOC_BASE_CONFIGURATION'),
)));

$categories_tpl->attach(do_template('INDEX_SCREEN_FANCIER_ENTRY', array(
'_GUID' => '7fde99ae81367fb7405e94b6731a7d9a',
'COUNT' => null,
'TITLE' => '',
'URL' => build_url(array('page' => '_SELF', 'type' => 'xml_fields'), '_SELF'),
'NAME' => do_lang_tempcode('FIELD_FILTERS'),
'DESCRIPTION' => do_lang_tempcode('DOC_FIELD_FILTERS'),
)));
$categories_tpl->attach(do_template('INDEX_SCREEN_FANCIER_ENTRY', array(
'_GUID' => '8fde99ae81367fb7405e94b6731a7d9a',
'COUNT' => null,
'TITLE' => '',
'URL' => build_url(array('page' => '_SELF', 'type' => 'xml_breadcrumbs'), '_SELF'),
'NAME' => do_lang_tempcode('BREADCRUMB_OVERRIDES'),
'DESCRIPTION' => do_lang_tempcode('DOC_BREADCRUMB_OVERRIDES'),
)));
$categories_tpl->attach(do_template('INDEX_SCREEN_FANCIER_ENTRY', array(
'_GUID' => '9fde99ae81367fb7405e94b6731a7d9a',
'COUNT' => null,
'TITLE' => '',
'URL' => build_url(array('page' => '_SELF', 'type' => 'upgrader'), '_SELF'),
'NAME' => do_lang_tempcode('FU_UPGRADER_TITLE'),
'DESCRIPTION' => do_lang_tempcode('FU_UPGRADER_INTRO'),
)));
$categories_tpl->attach(do_template('INDEX_SCREEN_FANCIER_ENTRY', array(
'_GUID' => '0fde99ae81367fb7405e94b6731a7d9a',
'COUNT' => null,
'TITLE' => '',
'URL' => build_url(array('page' => '_SELF', 'type' => 'backend'), '_SELF'),
'NAME' => do_lang_tempcode('_FEEDS'),
'DESCRIPTION' => comcode_to_tempcode(do_lang('OPML_INDEX_DESCRIPTION')),
)));
$categories_tpl->attach(do_template('INDEX_SCREEN_FANCIER_ENTRY', array(
'_GUID' => '1fde99ae81367fb7405e94b6731a7d9a',
'COUNT' => null,
'TITLE' => '',
'URL' => build_url(array('page' => '_SELF', 'type' => 'code_editor'), '_SELF'),
'NAME' => do_lang_tempcode('CODE_EDITOR'),
'DESCRIPTION' => do_lang_tempcode('DOC_CODE_EDITOR'),
)));

// Wrapper
return do_template('INDEX_SCREEN_FANCIER_SCREEN', array(
'_GUID' => 'c8fdb2b481625d58b0b228c897fda72f',
Expand Down
1 change: 1 addition & 0 deletions sources_custom/string_scan.php
Expand Up @@ -130,6 +130,7 @@ function string_scan($lang, $do_guessing = false, $only_exists = true)
CONTINUE_RESTORATION
CONFIG_OPTION_news_summary_required
OWNER
DEEPER_CONFIGURATION
LOST_DISK_CONTENT
DESCRIPTION_LOST_DISK_CONTENT
TICKETS_STAFF
Expand Down

0 comments on commit 44b0299

Please sign in to comment.