Posts

Showing posts from October, 2020

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 }