From 0a21ffbfecf30f619bdfc8de15c88911a6d7d3db Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 11 Dec 2016 21:43:27 +0100 Subject: show doc section heading in titlebar --- Zotlabs/Module/Help.php | 14 +++++++++++++- view/tpl/help.tpl | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Module/Help.php b/Zotlabs/Module/Help.php index 9d6e421e5..e247416d9 100644 --- a/Zotlabs/Module/Help.php +++ b/Zotlabs/Module/Help.php @@ -76,12 +76,24 @@ class Help extends \Zotlabs\Web\Controller { killme(); } + $headings = [ + 'about' => t('About'), + 'member' => t('Members'), + 'admin' => t('Administrators'), + 'developer' => t('Developers'), + 'tutorials' => t('Tutorials') + ]; + + if(array_key_exists(argv(1), $headings)) + $heading = $headings[argv(1)]; + $content = get_help_content(); return replace_macros(get_markup_template('help.tpl'), array( '$title' => t('$Projectname Documentation'), '$tocHeading' => t('Contents'), - '$content' => $content + '$content' => $content, + '$heading' => $heading )); } diff --git a/view/tpl/help.tpl b/view/tpl/help.tpl index 4ce48bca8..1c5d05738 100644 --- a/view/tpl/help.tpl +++ b/view/tpl/help.tpl @@ -1,6 +1,6 @@
-

{{$title}}

+

{{$title}}: {{$heading}}

-- cgit v1.2.3