Mobile detect on Cakephp
AppController.php $ isMobile = false ; if ( $ this -> request -> is ( ' mobile ' )){ $ isMobile = true ; } $ this -> set ( compact ( ' isMobile ' )); Use if ( $ this -> request -> isMobile ()) { // code here }