1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-21 05:41:58 +02:00

Issue #3184 Issue #3912 New Feature: can now use :(e_ROUTE) to switch theme layout visibility.

This commit is contained in:
Cameron
2021-02-14 10:36:45 -08:00
parent 4669285b6f
commit 50e0445807
5 changed files with 67 additions and 32 deletions

View File

@@ -804,10 +804,14 @@ class theme_admin_ui extends e_admin_ui
switch($type)
{
case "main/main":
$text = "<b>".TPVLAN_56."</b><br />"; // Visbility Filter
$text .= "<br />".$tp->toHTML(TPVLANHELP_03,true);
$text .= "<ul style='padding-left:10px;margin-top:10px'><li>".$tp->toHTML(TPVLANHELP_04,true)."</li>";
$text .= "<li>".$tp->toHTML(TPVLANHELP_05,true)."</li></ul>";
$text = '<b>'.TPVLAN_56.'</b><br />'; // Visbility Filter
$text .= '<br />'.$tp->toHTML(TPVLANHELP_03,true);
$text .= '<ul style="padding-left:10px;margin-top:10px">
<li>'.$tp->toHTML(TPVLANHELP_06,true).'</li>
<li>'.$tp->toHTML(TPVLANHELP_04,true).'</li>
<li>'.$tp->toHTML(TPVLANHELP_05,true).'</li>
</ul>';
break;
case "label2":
@@ -815,7 +819,7 @@ class theme_admin_ui extends e_admin_ui
break;
default:
$text = TPVLANHELP_01."<br /><br />".TPVLANHELP_02;
$text = TPVLANHELP_01.'<br /><br />'.TPVLANHELP_02;
}