simonmaddox / codeigniter-wurfl

A CodeIgniter wrapper class for the new WURFL API

This URL has Read+Write access

codeigniter-wurfl / Wurfl.php
100644 58 lines (47 sloc) 1.264 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
if (!defined('BASEPATH')) exit('No direct script access allowed');
class Wurfl {
 
var $wurflManager;
var $device;
var $id;
var $fallBack;
 
function Wurfl(){
$providerPath = 'libraries/WURFL/WURFLManagerProvider.php';
if (is_file(APPPATH . $providerPath)){
require_once(APPPATH . $providerPath);
} else if (is_file(BASEPATH . $providerPath)){
require_once(BASEPATH . $providerPath);
} else {
return false;
}
 
$this->wurflManager = WURFL_WURFLManagerProvider::getWURFLManager(APPPATH . 'config/wurfl-config.xml');
}
 
function load($device = ""){
if (is_array($device)){
$this->device = $this->wurflManager->getDeviceForHttpRequest($device);
} else {
$this->device = $this->wurflManager->getDeviceForUserAgent($device);
}
 
if (!empty($this->device)){
$this->id = $this->device->id;
$this->fallBack = $this->device->fallBack;
} else {
return false;
}
}
 
function getDevice(){
return $this->device;
}
 
function getCapability($capabilityName = ""){
return $this->device->getCapability($capabilityName);
}
 
function getAllCapabilities(){
return $this->device->getAllCapabilities();
}
 
function getId(){
return $this->id;
}
 
function getFallback(){
return $this->fallback;
}
 
}