1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 09:34:54 +02:00

Issue #5473 {LINK_CARET} added.

This commit is contained in:
camer0n
2025-04-19 07:53:21 -07:00
parent d696a12672
commit 29963c248d
5 changed files with 220 additions and 187 deletions

View File

@@ -49,9 +49,8 @@ class plugin_blank_admin extends e_admin_dispatcher
'main/create' => array('caption'=> 'LAN_CREATE', 'perm' => '0'),
'main/prefs' => array('caption'=> 'Settings', 'perm' => '0', 'icon'=>'fa-cog'),
'main/custom' => array('caption'=> 'Custom Pages', 'perm' => '0', 'icon'=>'fa-asterisk'),
'main/custom/sub1' => array('caption' => 'Custom Page 1', 'perm' => '0', 'icon' => ''),
'main/custom/sub2' => array('caption' => 'Custom Page 2', 'perm' => '0', 'icon' => ''),
'main/custom1' => array('group'=>'main/custom', 'caption' => 'Custom Page 1', 'perm' => '0', 'icon' => ''),
'main/custom2' => array('group'=>'main/custom', 'caption' => 'Custom Page 2', 'perm' => '0', 'icon' => ''),
);
/**
@@ -299,12 +298,15 @@ class plugin_blank_admin_ui extends e_admin_ui
}
public function customPage()
public function custom1Page()
{
$ns = e107::getRender();
$text = "Hello World!";
$ns->tablerender("Hello",$text);
return "Hello World Customer Page 1!";
}
public function custom2Page()
{
return "Hello World Customer Page 2!";
}
// left-panel help menu area. (replaces e_help.php used in old plugins)