API15:JApplication/isSite
From Joomla! Documentation
Description
Is site interface?
<! removed transcluded page call, red link never existed >
Syntax
isSite()
Returns
boolean True if this application is site.
Defined in
libraries/joomla/application/application.php
Importing
jimport( 'joomla.application.application' );
Source Body
function isSite()
{
return ($this->_clientId == 0);
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples