1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 04:10:38 +02:00

Plugin Builder: Example help menu function added.

This commit is contained in:
Cameron
2017-09-20 16:15:18 -07:00
parent 2496aab27e
commit 7025abd59a

View File

@@ -5155,6 +5155,15 @@ $text .= "
// do something // 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. // optional - a custom page.
@@ -5165,6 +5174,10 @@ $text .= "
return \$text; return \$text;
} }
*/ */
} }