]> git.mxchange.org Git - friendica.git/commitdiff
add 'hide_help' to admin panel
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 17 Feb 2013 11:37:45 +0000 (12:37 +0100)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 17 Feb 2013 11:37:45 +0000 (12:37 +0100)
mod/admin.php
view/admin_site.tpl
view/smarty3/admin_site.tpl

index 8a79fb108cc408d6265419a85ebc3a7aa7535d30..6e18ec5c863004ccebf85be88aa8dcf56c18d3d2 100644 (file)
@@ -274,6 +274,7 @@ function admin_page_site_post(&$a){
        $diaspora_enabled       =       ((x($_POST,'diaspora_enabled'))         ? True                                          : False);
        $ssl_policy             =       ((x($_POST,'ssl_policy'))               ? intval($_POST['ssl_policy'])                  : 0);
        $new_share              =       ((x($_POST,'new_share'))                ? True                                          : False);
+       $hide_help              =       ((x($_POST,'hide_help'))                ? True                                          : False);
        $use_fulltext_engine    =       ((x($_POST,'use_fulltext_engine'))      ? True                                          : False);
        $itemcache              =       ((x($_POST,'itemcache'))                ? notags(trim($_POST['itemcache']))             : '');
        $itemcache_duration     =       ((x($_POST,'itemcache_duration'))       ? intval($_POST['itemcache_duration'])          : 0);
@@ -380,6 +381,7 @@ function admin_page_site_post(&$a){
        set_config('system','diaspora_enabled', $diaspora_enabled);
 
        set_config('system','new_share', $new_share);
+       set_config('system','hide_help', $hide_help);
        set_config('system','use_fulltext_engine', $use_fulltext_engine);
        set_config('system','itemcache', $itemcache);
        set_config('system','itemcache_duration', $itemcache_duration);
@@ -474,6 +476,7 @@ function admin_page_site(&$a) {
                '$theme_mobile'         => array('theme_mobile', t("Mobile system theme"), get_config('system','mobile-theme'), t("Theme for mobile devices"), $theme_choices_mobile),
                '$ssl_policy'           => array('ssl_policy', t("SSL link policy"), (string) intval(get_config('system','ssl_policy')), t("Determines whether generated links should be forced to use SSL"), $ssl_choices),
                '$new_share'            => array('new_share', t("'Share' element"), get_config('system','new_share'), t("Activates the bbcode element 'share' for repeating items.")),
+               '$hide_help'            => array('hide_help', t("Hide help entry from navigation menu"), get_config('system','hide_help'), t("Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly.")),
                '$maximagesize'         => array('maximagesize', t("Maximum image size"), get_config('system','maximagesize'), t("Maximum size in bytes of uploaded images. Default is 0, which means no limits.")),
                '$maximagelength'               => array('maximagelength', t("Maximum image length"), get_config('system','max_image_length'), t("Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.")),
                '$jpegimagequality'             => array('jpegimagequality', t("JPEG image quality"), get_config('system','jpeg_quality'), t("Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.")),
index e8fdd425895c6240a6b8a786bd1f0a2503a57c19..1a2a83339b6f53a5f63b941e07df27cc092cd37e 100644 (file)
@@ -51,6 +51,7 @@
        {{ inc field_select.tpl with $field=$theme_mobile }}{{ endinc }}
        {{ inc field_select.tpl with $field=$ssl_policy }}{{ endinc }}
        {{ inc field_checkbox.tpl with $field=$new_share }}{{ endinc }}
+       {{ inc field_checkbox.tpl with $field=$hide_help }}{{ endinc }}
 
        
        <div class="submit"><input type="submit" name="page_site" value="$submit" /></div>
index f033b52eeffaa7468f3e6639f98cc5da941a5c0b..af78ca734bf95d62368c58e91fd6f813a9e91a25 100644 (file)
@@ -56,6 +56,7 @@
        {{include file="field_select.tpl" field=$theme_mobile}}
        {{include file="field_select.tpl" field=$ssl_policy}}
        {{include file="field_checkbox.tpl" field=$new_share}}
+       {{include file="field_checkbox.tpl" field=$hide_help}}
 
        
        <div class="submit"><input type="submit" name="page_site" value="{{$submit}}" /></div>