From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tim FitzGeorge To: development@lists.ipfire.org Subject: [PATCH 1/3] Help for GUI - ipfire theme code Date: Fri, 15 May 2020 22:39:50 +0100 Message-ID: <20200515213952.15127-2-ipfr@tfitzgeorge.me.uk> In-Reply-To: <20200515213952.15127-1-ipfr@tfitzgeorge.me.uk> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8953316405361015891==" List-Id: --===============8953316405361015891== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Extracts help key from menu hash when building menus and adds help link to the menu. Signed-off-by: Tim FitzGeorge --- 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 =3D shift; + my $uri =3D shift; + my $help; =09 print "
    "; foreach my $item (sort keys %$submenus) { @@ -54,16 +56,26 @@ sub showsubmenu() { } print ''.$submenus->{$item}->{'caption'}.''; =20 + if (exists $submenus->{$item}->{'help'} and $link eq $uri) { + $help =3D $submenus->{$item}->{'help'}; + } + &showsubmenu($subsubmenus) if ($subsubmenus); print ''; } - print "
" + print ""; + + return $help; } =20 ############################################################################= ### # # print menu html elements sub showmenu() { + $uri =3D shift; + my $help =3D ''; + my $subhelp; + print '
'; =20 if ($settings{'SPEED'} ne 'off') { @@ -82,10 +94,11 @@ EOF next if (!is_menu_visible($link) or $link eq ''); print '
  • '.$menu->{$k1}->{'captio= n'}.''; my $submenus =3D $menu->{$k1}->{'subMenu'}; - &showsubmenu($submenus) if ($submenus); + $help .=3D &showsubmenu($submenus, $uri) if ($submenus); print "
  • "; } =20 + print '
  • ?
  • ' if ($help); print "
    "; } =20 @@ -168,7 +181,7 @@ print < --=20 2.26.1 --===============8953316405361015891==--