Difference between revisions of "6CC001 Workshop - Mobile"

From mi-linux
Jump to navigationJump to search
Line 3: Line 3:
 
The easiest way to create a mobile version of a website when using a Web Framework is to use the helpers provided.
 
The easiest way to create a mobile version of a website when using a Web Framework is to use the helpers provided.
  
For example CodeIgniter features a is_mobile() helper that you can use to load different views in your controllers (desktop or mobile):
+
For example CodeIgniter features a [http://ellislab.com/codeigniter/user-guide/libraries/user_agent.html is_mobile() helper] that you can use to load different views in your controllers (desktop or mobile):
  
 
<pre>
 
<pre>

Revision as of 16:52, 12 March 2014

Main Page >> Advanced Web Technologies >> Workbook >> Week 08

The easiest way to create a mobile version of a website when using a Web Framework is to use the helpers provided.

For example CodeIgniter features a is_mobile() helper that you can use to load different views in your controllers (desktop or mobile):

if ($this->agent->is_mobile('iphone'))
{
    $this->load->view('iphone/home');
}
else if ($this->agent->is_mobile())
{
    $this->load->view('mobile/home');
}
else
{
    $this->load->view('web/home');
}