From 7025abd59ac6222bdda51ab90f4562dd5f5c805f Mon Sep 17 00:00:00 2001 From: Cameron <e107inc@gmail.com> Date: Wed, 20 Sep 2017 16:15:18 -0700 Subject: [PATCH] Plugin Builder: Example help menu function added. --- e107_admin/plugin.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/e107_admin/plugin.php b/e107_admin/plugin.php index e69d356b8..00d7a3bc2 100644 --- a/e107_admin/plugin.php +++ b/e107_admin/plugin.php @@ -5155,6 +5155,15 @@ $text .= " // do something } + // left-panel help menu area. + public function renderHelp() + { + \$caption = LAN_HELP; + \$text = 'Some help text'; + + return array('caption'=>\$caption,'text'=> \$text); + + } /* // optional - a custom page. @@ -5165,6 +5174,10 @@ $text .= " return \$text; } + + + + */ }