references:joomla.framework:application:japplication-isadminisAdmin
Returns a boolean value specifying whether or not the current page is being loaded from the administrator interface. Syntaxboolean isAdmin () ExamplesExample global $mainframe; if ($mainframe->isAdmin()) { echo "We are in the administrator interface!"; } else { echo "We are not in the administrator interface!"; } might produce Result We are not in the administrator interface!
|


