kkreft
7/24/2014 - 12:25 PM

J! isFrontend

function isFrontend(){

    $session =& JFactory::getSession();

	$table = & JTable::getInstance('session');
	$table->load( $session->getId() );

	if($table->client_id == 1)  
		return false;

	return true;
}