Admin Area
AdminAreaHeadMetaTags
Used to output in the "head" label on pages related to the administrator area.
Return
Hook::add("AdminAreaHeadMetaTags",1,function(){
if(View::$init->template_file == 'index.php')
return '';
});
AdminAreaHeadCSS
Used to output in the "head" label on pages related to the administrator area.
Return
Hook::add("AdminAreaHeadCSS",1,function(){
if(View::$init->template_file == 'index.php')
return '';
});
AdminAreaHeadJS
Used to output in the "head" label on pages related to the administrator area.
Return
Hook::add("AdminAreaHeadJS",1,function(){
if(View::$init->template_file == 'index.php')
return '';
});
AdminAreaBeginBody
Used to output after the "begin body" label on pages related to the admin area.
Return
Hook::add("AdminAreaBeginBody",1,function(){
if(View::$init->template_file == 'index.php')
return 'Body Begin Code Here...';
});
AdminAreaEndBody
Used to output before the "end body" label on pages related to the admin area.
Return
Hook::add("AdminAreaEndBody",1,function(){
if(View::$init->template_file == 'index.php')
return 'Body End Code Here...';
});