Prevent system Plugin from running on the back end? - Joomla! Forum - community, help and support
what's best way make sure system plugin doesn't run in back-end (admin)? if possible, please provide code sample.
thanks!
thanks!
whycali wrote:what's best way make sure system plugin doesn't run in back-end (admin)? if possible, please provide code sample.
thanks!
$app = jfactory::getapplication();
if($app->isadmin()) {
return;
}
ian
Comments
Post a Comment