From: Tim FitzGeorge <ipfr@tfitzgeorge.me.uk>
To: development@lists.ipfire.org
Subject: [PATCH 1/3] Help for GUI - ipfire theme code
Date: Fri, 15 May 2020 22:39:50 +0100 [thread overview]
Message-ID: <20200515213952.15127-2-ipfr@tfitzgeorge.me.uk> (raw)
In-Reply-To: <20200515213952.15127-1-ipfr@tfitzgeorge.me.uk>
[-- Attachment #1: Type: text/plain, Size: 2097 bytes --]
Extracts help key from menu hash when building menus and adds help
link to the menu.
Signed-off-by: Tim FitzGeorge <ipfr(a)tfitzgeorge.me.uk>
---
html/html/themes/ipfire/include/functions.pl | 19 ++++++++++++++++---
1 file changed, 16 insertions(+), 3 deletions(-)
diff --git a/html/html/themes/ipfire/include/functions.pl b/html/html/themes/ipfire/include/functions.pl
index 9aec77497..6eb56c628 100644
--- a/html/html/themes/ipfire/include/functions.pl
+++ b/html/html/themes/ipfire/include/functions.pl
@@ -39,6 +39,8 @@ require "${General::swroot}/lang.pl";
# @param submenu entries
sub showsubmenu() {
my $submenus = shift;
+ my $uri = shift;
+ my $help;
print "<ul>";
foreach my $item (sort keys %$submenus) {
@@ -54,16 +56,26 @@ sub showsubmenu() {
}
print '<a href="'.$link.'">'.$submenus->{$item}->{'caption'}.'</a>';
+ if (exists $submenus->{$item}->{'help'} and $link eq $uri) {
+ $help = $submenus->{$item}->{'help'};
+ }
+
&showsubmenu($subsubmenus) if ($subsubmenus);
print '</li>';
}
- print "</ul>"
+ print "</ul>";
+
+ return $help;
}
###############################################################################
#
# print menu html elements
sub showmenu() {
+ $uri = shift;
+ my $help = '';
+ my $subhelp;
+
print '<div id="cssmenu" class="bigbox fixed">';
if ($settings{'SPEED'} ne 'off') {
@@ -82,10 +94,11 @@ EOF
next if (!is_menu_visible($link) or $link eq '');
print '<li class="has-sub "><a href="#"><span>'.$menu->{$k1}->{'caption'}.'</span></a>';
my $submenus = $menu->{$k1}->{'subMenu'};
- &showsubmenu($submenus) if ($submenus);
+ $help .= &showsubmenu($submenus, $uri) if ($submenus);
print "</li>";
}
+ print '<li><a href="https://wiki.ipfire.org/'.$help.'" target="ipfire" class="help">?</a></li>' if ($help);
print "</ul></div>";
}
@@ -168,7 +181,7 @@ print <<END
END
;
-&showmenu() if ($suppressMenu != 1);
+&showmenu( $URI[0] ) if ($suppressMenu != 1);
print <<END
<div class="bigbox fixed">
--
2.26.1
next prev parent reply other threads:[~2020-05-15 21:39 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-15 21:39 [PATCH 0/3] Help for GUI Tim FitzGeorge
2020-05-15 21:39 ` Tim FitzGeorge [this message]
2020-05-15 21:39 ` [PATCH 2/3] Help for GUI - Help links Tim FitzGeorge
2020-05-15 21:39 ` [PATCH 3/3] Help for GUI - help link style Tim FitzGeorge
2020-05-16 9:35 ` [PATCH 0/3] Help for GUI Michael Tremer
2020-05-18 20:18 ` Tim FitzGeorge
2020-05-22 13:07 ` Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200515213952.15127-2-ipfr@tfitzgeorge.me.uk \
--to=ipfr@tfitzgeorge.me.uk \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox