Skip to content

Instantly share code, notes, and snippets.

@maxparm
Created April 16, 2012 19:08
Show Gist options
  • Save maxparm/2400827 to your computer and use it in GitHub Desktop.
Save maxparm/2400827 to your computer and use it in GitHub Desktop.
Lithium - Detect Mobile Device
<?php
namespace app\controllers;
class HomeController extends \lithium\action\Controller {
public function index() {
if($this->request->is('mobile')) {
return $this->redirect('/mobile');
}
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment