From 09b4660c7d8d15cf2419202116199a725c7c109c Mon Sep 17 00:00:00 2001 From: zotlabs Date: Tue, 10 Oct 2017 18:50:01 -0700 Subject: rename view/tpl/nav.tpl to navbar_default.tpl so that all navbar selection code is consistent --- boot.php | 2 +- doc/member/member_guide.bb | 2 +- include/nav.php | 4 +- view/tpl/nav.tpl | 170 -------------------------------------------- view/tpl/navbar_default.tpl | 170 ++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 174 insertions(+), 174 deletions(-) delete mode 100755 view/tpl/nav.tpl create mode 100755 view/tpl/navbar_default.tpl diff --git a/boot.php b/boot.php index 3feac5177..367fe7709 100755 --- a/boot.php +++ b/boot.php @@ -2090,7 +2090,7 @@ function construct_page() { $installing = false; - $navbar = get_config('system','navbar','nav'); + $navbar = get_config('system','navbar','default'); if(App::$profile_uid) { $navbar = get_pconfig(App::$profile_uid,'system','navbar',$navbar); } diff --git a/doc/member/member_guide.bb b/doc/member/member_guide.bb index 0794f24d3..4a9262741 100644 --- a/doc/member/member_guide.bb +++ b/doc/member/member_guide.bb @@ -640,7 +640,7 @@ The condensed notation isn't part of Comanche itself but is recognised by $Proje [navbar]tucson[/navbar] [/code] -Use the 'tucson' navbar template and CSS rules. By default the 'nav' navbar template will be used. +Use the 'tucson' navbar template and CSS rules. By default the 'default' navbar template will be used. [h4]Regions[/h4] diff --git a/include/nav.php b/include/nav.php index b5f713145..0d554fc84 100644 --- a/include/nav.php +++ b/include/nav.php @@ -6,7 +6,7 @@ require_once('include/security.php'); require_once('include/menu.php'); -function nav($template = 'nav') { +function nav($template = 'default') { /** * @@ -248,7 +248,7 @@ EOT; } if(! $tpl) { - $tpl = get_markup_template('nav.tpl'); + $tpl = get_markup_template('navbar_default.tpl'); } App::$page['nav'] .= replace_macros($tpl, array( diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl deleted file mode 100755 index b6faad0c2..000000000 --- a/view/tpl/nav.tpl +++ /dev/null @@ -1,170 +0,0 @@ -{{if $nav.login && !$userinfo}} -
- - {{$nav.loginmenu.1.1}} - - {{if $nav.register}} - - {{$nav.register.1}} - - {{/if}} -
-{{/if}} -{{if $userinfo}} - - -{{/if}} - - - -{{if $nav.help.6}} -
- {{$nav.help.5}} - -
-{{/if}} diff --git a/view/tpl/navbar_default.tpl b/view/tpl/navbar_default.tpl new file mode 100755 index 000000000..b6faad0c2 --- /dev/null +++ b/view/tpl/navbar_default.tpl @@ -0,0 +1,170 @@ +{{if $nav.login && !$userinfo}} +
+ + {{$nav.loginmenu.1.1}} + + {{if $nav.register}} + + {{$nav.register.1}} + + {{/if}} +
+{{/if}} +{{if $userinfo}} + + +{{/if}} + + + +{{if $nav.help.6}} +
+ {{$nav.help.5}} + +
+{{/if}} -- cgit v1.2.3