Client Area
ClientAreaHeadMetaTags
Used to output in the head label on pages related to the client area.
Return
Hook::add("ClientAreaHeadMetaTags",1,function(){
if(View::$init->template_file == 'index.php')
return '';
});
ClientAreaHeadCSS
Used to output in the head label on pages related to the client area.
Return
Hook::add("ClientAreaHeadCSS",1,function(){
if(View::$init->template_file == 'index.php')
return '';
});
ClientAreaHeadJS
Used to output in the head label on pages related to the client area.
Return
Hook::add("ClientAreaHeadJS",1,function(){
if(View::$init->template_file == 'index.php')
return '';
});
ClientAreaBeginBody
Used to output after the "body" label on pages related to the client area.
Return
Hook::add("ClientAreaBeginBody",1,function(){
if(View::$init->template_file == 'index.php')
return 'Body Begin Code Here...';
});
ClientAreaEndBody
Used to output after the "body" label on pages related to the client area.
Return
Hook::add("ClientAreaEndBody",1,function(){
if(View::$init->template_file == 'index.php')
return 'Body End Code Here...';
});