====== isAdmin ====== {#JAPI Joomla.Framework Application JApplication::isAdmin #} Returns a boolean value specifying whether or not the current page is being loaded from the administrator interface. ===== Syntax ===== boolean isAdmin () ===== Examples ===== global $mainframe; if ($mainframe->isAdmin()) { echo "We are in the administrator interface!"; } else { echo "We are not in the administrator interface!"; } might produce We are not in the administrator interface! ---- ~~DISCUSSION~~