1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 03:40:37 +02:00

Issue #5473 New Admin Area Skin. (currently not functional with flexpanel)

This commit is contained in:
camer0n
2025-04-18 14:36:52 -07:00
parent 13b3c2c76e
commit 65df4da999
8 changed files with 1909 additions and 7 deletions

View File

@@ -96,6 +96,27 @@ class admin_shortcodes extends e_shortcode
}
public function sc_admin_container_legacy($parm=null)
{
$exclude = array(
'admin.php',
'menus.php',
'phpinfo.php',
'credits.php',
'docs.php',
'cache.php',
'emoticon.php',
'updateadmin.php',
'administrator.php',
);
if(!deftrue('e_CURRENT_PLUGIN') && in_array(e_PAGE, $exclude))
{
return 'admin-container-legacy';
}
}
// {ADMIN_COREUPDATE}
public function sc_admin_coreupdate($parm='')