| API | Package | Subpackage | Class | Method | Reference | Last reviewed | Doc status |
|---|---|---|---|---|---|---|---|
Home |
Joomla.Framework |
Application |
JApplication |
isAdmin |
isAdmin() |
Never | Work in Progress |
Returns a boolean value specifying whether or not the current page is being loaded from the administrator interface.
boolean isAdmin ()
Example
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!