1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-17 20:01:47 +02:00

Speed up admin Plugin-Manager page refresh. Add support for e_help() function.

This commit is contained in:
Cameron
2013-04-17 15:22:47 -07:00
parent a25287055a
commit af1a88ef30
2 changed files with 37 additions and 6 deletions

View File

@@ -57,10 +57,18 @@ class admin_shortcodes
function sc_admin_help()
{
if (!ADMIN) { return ''; }
$ns = e107::getRender();
$pref = e107::getPref();
if(function_exists('e_help')) // new in v2.x for non-admin-ui admin pages.
{
$tmp = e_help();
return $ns->tablerender($tmp['caption'],$tmp['text'],'',true);
}
$helpfile = '';
global $ns, $pref; // Used by the help renderer
if(strpos(e_SELF, e_ADMIN_ABS) !== FALSE)
{
if (is_readable(e_LANGUAGEDIR.e_LANGUAGE.'/admin/help/'.e_PAGE))