Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 1 | <?php |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Phil Sturgeon | 07c1ac8 | 2012-03-09 17:03:37 +0000 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 6 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 7 | * NOTICE OF LICENSE |
Andrey Andreev | 83d1505 | 2011-12-22 13:35:42 +0200 | [diff] [blame] | 8 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 9 | * Licensed under the Open Software License version 3.0 |
Andrey Andreev | 83d1505 | 2011-12-22 13:35:42 +0200 | [diff] [blame] | 10 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 11 | * This source file is subject to the Open Software License (OSL 3.0) that is |
| 12 | * bundled with this package in the files license.txt / license.rst. It is |
| 13 | * also available through the world wide web at this URL: |
| 14 | * http://opensource.org/licenses/OSL-3.0 |
| 15 | * If you did not receive a copy of the license and are unable to obtain it |
| 16 | * through the world wide web, please send an email to |
| 17 | * licensing@ellislab.com so we can send you a copy immediately. |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 18 | * |
| 19 | * @package CodeIgniter |
| 20 | * @author EllisLab Dev Team |
Andrey Andreev | 80500af | 2013-01-01 08:16:53 +0200 | [diff] [blame] | 21 | * @copyright Copyright (c) 2006 - 2013, EllisLab, Inc. (http://ellislab.com/) |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 22 | * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 23 | * @link http://codeigniter.com |
| 24 | * @since Version 1.0 |
| 25 | * @filesource |
| 26 | */ |
Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 27 | defined('BASEPATH') OR exit('No direct script access allowed'); |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 28 | |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 29 | /** |
| 30 | * CodeIgniter Driver Library Class |
| 31 | * |
| 32 | * This class enables you to create "Driver" libraries that add runtime ability |
| 33 | * to extend the capabilities of a class via additional driver objects |
| 34 | * |
| 35 | * @package CodeIgniter |
| 36 | * @subpackage Libraries |
| 37 | * @category Libraries |
| 38 | * @author EllisLab Dev Team |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 39 | * @link |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 40 | */ |
| 41 | class CI_Driver_Library { |
| 42 | |
Timothy Warren | 0688ac9 | 2012-04-20 10:25:04 -0400 | [diff] [blame] | 43 | /** |
| 44 | * Array of drivers that are available to use with the driver class |
| 45 | * |
| 46 | * @var array |
| 47 | */ |
| 48 | protected $valid_drivers = array(); |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 49 | |
Timothy Warren | 0688ac9 | 2012-04-20 10:25:04 -0400 | [diff] [blame] | 50 | /** |
| 51 | * Name of the current class - usually the driver class |
| 52 | * |
| 53 | * @var string |
| 54 | */ |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 55 | protected $lib_name; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 56 | |
Darren Hill | 6fbf6bd | 2011-08-31 14:15:35 -0400 | [diff] [blame] | 57 | /** |
| 58 | * Get magic method |
| 59 | * |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 60 | * The first time a child is used it won't exist, so we instantiate it |
| 61 | * subsequents calls will go straight to the proper child. |
Darren Hill | 6fbf6bd | 2011-08-31 14:15:35 -0400 | [diff] [blame] | 62 | * |
dchill42 | 6262d05 | 2012-11-24 18:41:13 -0500 | [diff] [blame] | 63 | * @param string Child class name |
| 64 | * @return object Child class |
Darren Hill | 6fbf6bd | 2011-08-31 14:15:35 -0400 | [diff] [blame] | 65 | */ |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 66 | public function __get($child) |
Andrey Andreev | 2e3e230 | 2012-10-09 15:52:34 +0300 | [diff] [blame] | 67 | { |
Darren Hill | 6fbf6bd | 2011-08-31 14:15:35 -0400 | [diff] [blame] | 68 | // Try to load the driver |
dchill42 | c587225 | 2012-07-30 14:53:11 -0400 | [diff] [blame] | 69 | return $this->load_driver($child); |
Darren Hill | 6fbf6bd | 2011-08-31 14:15:35 -0400 | [diff] [blame] | 70 | } |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 71 | |
Darren Hill | 6fbf6bd | 2011-08-31 14:15:35 -0400 | [diff] [blame] | 72 | /** |
| 73 | * Load driver |
| 74 | * |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 75 | * Separate load_driver call to support explicit driver load by library or user |
Darren Hill | 6fbf6bd | 2011-08-31 14:15:35 -0400 | [diff] [blame] | 76 | * |
dchill42 | 6262d05 | 2012-11-24 18:41:13 -0500 | [diff] [blame] | 77 | * @param string Driver name (w/o parent prefix) |
| 78 | * @return object Child class |
Darren Hill | 6fbf6bd | 2011-08-31 14:15:35 -0400 | [diff] [blame] | 79 | */ |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 80 | public function load_driver($child) |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 81 | { |
dchill42 | 6262d05 | 2012-11-24 18:41:13 -0500 | [diff] [blame] | 82 | // Get CodeIgniter instance and subclass prefix |
| 83 | $CI = get_instance(); |
| 84 | $prefix = (string) $CI->config->item('subclass_prefix'); |
| 85 | |
Pascal Kriete | 14287f3 | 2011-02-14 13:39:34 -0500 | [diff] [blame] | 86 | if ( ! isset($this->lib_name)) |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 87 | { |
dchill42 | 6262d05 | 2012-11-24 18:41:13 -0500 | [diff] [blame] | 88 | // Get library name without any prefix |
| 89 | $this->lib_name = str_replace(array('CI_', $prefix), '', get_class($this)); |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 90 | } |
| 91 | |
dchill42 | 6262d05 | 2012-11-24 18:41:13 -0500 | [diff] [blame] | 92 | // The child will be prefixed with the parent lib |
| 93 | $child_name = $this->lib_name.'_'.$child; |
Andrey Andreev | 83d1505 | 2011-12-22 13:35:42 +0200 | [diff] [blame] | 94 | |
dchill42 | 6262d05 | 2012-11-24 18:41:13 -0500 | [diff] [blame] | 95 | // See if requested child is a valid driver |
Andrey Andreev | 7e83f32 | 2012-11-25 16:03:21 +0200 | [diff] [blame] | 96 | if ( ! in_array($child, $this->valid_drivers)) |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 97 | { |
dchill42 | 6262d05 | 2012-11-24 18:41:13 -0500 | [diff] [blame] | 98 | // The requested driver isn't valid! |
| 99 | $msg = 'Invalid driver requested: '.$child_name; |
| 100 | log_message('error', $msg); |
| 101 | show_error($msg); |
| 102 | } |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 103 | |
dchill42 | 6262d05 | 2012-11-24 18:41:13 -0500 | [diff] [blame] | 104 | // Get package paths and filename case variations to search |
| 105 | $paths = $CI->load->get_package_paths(TRUE); |
dchill42 | 6262d05 | 2012-11-24 18:41:13 -0500 | [diff] [blame] | 106 | |
| 107 | // Is there an extension? |
| 108 | $class_name = $prefix.$child_name; |
| 109 | $found = class_exists($class_name); |
| 110 | if ( ! $found) |
| 111 | { |
| 112 | // Check for subclass file |
| 113 | foreach ($paths as $path) |
| 114 | { |
Andrey Andreev | 7e83f32 | 2012-11-25 16:03:21 +0200 | [diff] [blame] | 115 | // Does the file exist? |
| 116 | $file = $path.'libraries/'.$this->lib_name.'/drivers/'.$prefix.$child_name.'.php'; |
| 117 | if (file_exists($file)) |
dchill42 | 6262d05 | 2012-11-24 18:41:13 -0500 | [diff] [blame] | 118 | { |
Andrey Andreev | 7e83f32 | 2012-11-25 16:03:21 +0200 | [diff] [blame] | 119 | // Yes - require base class from BASEPATH |
| 120 | $basepath = BASEPATH.'libraries/'.$this->lib_name.'/drivers/'.$child_name.'.php'; |
| 121 | if ( ! file_exists($basepath)) |
dchill42 | 6262d05 | 2012-11-24 18:41:13 -0500 | [diff] [blame] | 122 | { |
Andrey Andreev | 7e83f32 | 2012-11-25 16:03:21 +0200 | [diff] [blame] | 123 | $msg = 'Unable to load the requested class: CI_'.$child_name; |
| 124 | log_message('error', $msg); |
| 125 | show_error($msg); |
dchill42 | 6262d05 | 2012-11-24 18:41:13 -0500 | [diff] [blame] | 126 | } |
Andrey Andreev | 7e83f32 | 2012-11-25 16:03:21 +0200 | [diff] [blame] | 127 | |
| 128 | // Include both sources and mark found |
| 129 | include($basepath); |
| 130 | include($file); |
| 131 | $found = TRUE; |
| 132 | break; |
dchill42 | 6262d05 | 2012-11-24 18:41:13 -0500 | [diff] [blame] | 133 | } |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | // Do we need to search for the class? |
| 138 | if ( ! $found) |
| 139 | { |
| 140 | // Use standard class name |
| 141 | $class_name = 'CI_'.$child_name; |
| 142 | $found = class_exists($class_name); |
| 143 | if ( ! $found) |
| 144 | { |
| 145 | // Check package paths |
| 146 | foreach ($paths as $path) |
| 147 | { |
Andrey Andreev | 7e83f32 | 2012-11-25 16:03:21 +0200 | [diff] [blame] | 148 | // Does the file exist? |
| 149 | $file = $path.'libraries/'.$this->lib_name.'/drivers/'.$child_name.'.php'; |
| 150 | if (file_exists($file)) |
dchill42 | 6262d05 | 2012-11-24 18:41:13 -0500 | [diff] [blame] | 151 | { |
Andrey Andreev | 7e83f32 | 2012-11-25 16:03:21 +0200 | [diff] [blame] | 152 | // Include source |
| 153 | include($file); |
| 154 | break; |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 155 | } |
| 156 | } |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 157 | } |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 158 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 159 | |
dchill42 | 6262d05 | 2012-11-24 18:41:13 -0500 | [diff] [blame] | 160 | // Did we finally find the class? |
| 161 | if ( ! class_exists($class_name)) |
| 162 | { |
William Knauss | 401fb49 | 2012-11-27 00:01:03 -0500 | [diff] [blame] | 163 | if (class_exists($child_name)) |
| 164 | { |
| 165 | $class_name = $child_name; |
| 166 | } |
| 167 | else |
| 168 | { |
| 169 | $msg = 'Unable to load the requested driver: '.$class_name; |
| 170 | log_message('error', $msg); |
| 171 | show_error($msg); |
| 172 | } |
dchill42 | 6262d05 | 2012-11-24 18:41:13 -0500 | [diff] [blame] | 173 | } |
| 174 | |
Andrey Andreev | 7e83f32 | 2012-11-25 16:03:21 +0200 | [diff] [blame] | 175 | // Instantiate, decorate and add child |
| 176 | $obj = new $class_name(); |
dchill42 | 6262d05 | 2012-11-24 18:41:13 -0500 | [diff] [blame] | 177 | $obj->decorate($this); |
| 178 | $this->$child = $obj; |
| 179 | return $this->$child; |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 180 | } |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 181 | |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 182 | } |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 183 | |
Timothy Warren | 0688ac9 | 2012-04-20 10:25:04 -0400 | [diff] [blame] | 184 | // -------------------------------------------------------------------------- |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 185 | |
| 186 | /** |
| 187 | * CodeIgniter Driver Class |
| 188 | * |
| 189 | * This class enables you to create drivers for a Library based on the Driver Library. |
| 190 | * It handles the drivers' access to the parent library |
| 191 | * |
| 192 | * @package CodeIgniter |
| 193 | * @subpackage Libraries |
| 194 | * @category Libraries |
| 195 | * @author EllisLab Dev Team |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 196 | * @link |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 197 | */ |
| 198 | class CI_Driver { |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 199 | |
Timothy Warren | 0688ac9 | 2012-04-20 10:25:04 -0400 | [diff] [blame] | 200 | /** |
| 201 | * Instance of the parent class |
| 202 | * |
| 203 | * @var object |
| 204 | */ |
Andrey Andreev | 8486e9c | 2012-03-26 20:24:12 +0300 | [diff] [blame] | 205 | protected $_parent; |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 206 | |
Timothy Warren | 0688ac9 | 2012-04-20 10:25:04 -0400 | [diff] [blame] | 207 | /** |
| 208 | * List of methods in the parent class |
| 209 | * |
| 210 | * @var array |
| 211 | */ |
Andrey Andreev | 8486e9c | 2012-03-26 20:24:12 +0300 | [diff] [blame] | 212 | protected $_methods = array(); |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 213 | |
Timothy Warren | 0688ac9 | 2012-04-20 10:25:04 -0400 | [diff] [blame] | 214 | /** |
| 215 | * List of properties in the parent class |
| 216 | * |
| 217 | * @var array |
| 218 | */ |
Andrey Andreev | 8486e9c | 2012-03-26 20:24:12 +0300 | [diff] [blame] | 219 | protected $_properties = array(); |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 220 | |
Timothy Warren | 0688ac9 | 2012-04-20 10:25:04 -0400 | [diff] [blame] | 221 | /** |
| 222 | * Array of methods and properties for the parent class(es) |
| 223 | * |
Andrey Andreev | 5fd3ae8 | 2012-10-24 14:55:35 +0300 | [diff] [blame] | 224 | * @static |
| 225 | * @var array |
Timothy Warren | 0688ac9 | 2012-04-20 10:25:04 -0400 | [diff] [blame] | 226 | */ |
Andrey Andreev | 8486e9c | 2012-03-26 20:24:12 +0300 | [diff] [blame] | 227 | protected static $_reflections = array(); |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 228 | |
| 229 | /** |
| 230 | * Decorate |
| 231 | * |
| 232 | * Decorates the child with the parent driver lib's methods and properties |
| 233 | * |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 234 | * @param object |
| 235 | * @return void |
| 236 | */ |
Greg Aker | a926328 | 2010-11-10 15:26:43 -0600 | [diff] [blame] | 237 | public function decorate($parent) |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 238 | { |
Andrey Andreev | 8486e9c | 2012-03-26 20:24:12 +0300 | [diff] [blame] | 239 | $this->_parent = $parent; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 240 | |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 241 | // Lock down attributes to what is defined in the class |
| 242 | // and speed up references in magic methods |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 243 | |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 244 | $class_name = get_class($parent); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 245 | |
Andrey Andreev | 8486e9c | 2012-03-26 20:24:12 +0300 | [diff] [blame] | 246 | if ( ! isset(self::$_reflections[$class_name])) |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 247 | { |
| 248 | $r = new ReflectionObject($parent); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 249 | |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 250 | foreach ($r->getMethods() as $method) |
| 251 | { |
| 252 | if ($method->isPublic()) |
| 253 | { |
Andrey Andreev | 8486e9c | 2012-03-26 20:24:12 +0300 | [diff] [blame] | 254 | $this->_methods[] = $method->getName(); |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 255 | } |
| 256 | } |
| 257 | |
Pascal Kriete | 14287f3 | 2011-02-14 13:39:34 -0500 | [diff] [blame] | 258 | foreach ($r->getProperties() as $prop) |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 259 | { |
| 260 | if ($prop->isPublic()) |
| 261 | { |
Andrey Andreev | 8486e9c | 2012-03-26 20:24:12 +0300 | [diff] [blame] | 262 | $this->_properties[] = $prop->getName(); |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 263 | } |
| 264 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 265 | |
Andrey Andreev | 8486e9c | 2012-03-26 20:24:12 +0300 | [diff] [blame] | 266 | self::$_reflections[$class_name] = array($this->_methods, $this->_properties); |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 267 | } |
| 268 | else |
| 269 | { |
Andrey Andreev | 8486e9c | 2012-03-26 20:24:12 +0300 | [diff] [blame] | 270 | list($this->_methods, $this->_properties) = self::$_reflections[$class_name]; |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 271 | } |
| 272 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 273 | |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 274 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 275 | |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 276 | /** |
| 277 | * __call magic method |
| 278 | * |
| 279 | * Handles access to the parent driver library's methods |
| 280 | * |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 281 | * @param string |
| 282 | * @param array |
| 283 | * @return mixed |
| 284 | */ |
| 285 | public function __call($method, $args = array()) |
| 286 | { |
Andrey Andreev | 8486e9c | 2012-03-26 20:24:12 +0300 | [diff] [blame] | 287 | if (in_array($method, $this->_methods)) |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 288 | { |
Andrey Andreev | 8486e9c | 2012-03-26 20:24:12 +0300 | [diff] [blame] | 289 | return call_user_func_array(array($this->_parent, $method), $args); |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | $trace = debug_backtrace(); |
| 293 | _exception_handler(E_ERROR, "No such method '{$method}'", $trace[1]['file'], $trace[1]['line']); |
| 294 | exit; |
| 295 | } |
| 296 | |
| 297 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 298 | |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 299 | /** |
| 300 | * __get magic method |
| 301 | * |
| 302 | * Handles reading of the parent driver library's properties |
| 303 | * |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 304 | * @param string |
| 305 | * @return mixed |
| 306 | */ |
Greg Aker | a926328 | 2010-11-10 15:26:43 -0600 | [diff] [blame] | 307 | public function __get($var) |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 308 | { |
Andrey Andreev | 8486e9c | 2012-03-26 20:24:12 +0300 | [diff] [blame] | 309 | if (in_array($var, $this->_properties)) |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 310 | { |
Andrey Andreev | 8486e9c | 2012-03-26 20:24:12 +0300 | [diff] [blame] | 311 | return $this->_parent->$var; |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 312 | } |
| 313 | } |
| 314 | |
| 315 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 316 | |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 317 | /** |
| 318 | * __set magic method |
| 319 | * |
| 320 | * Handles writing to the parent driver library's properties |
| 321 | * |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 322 | * @param string |
| 323 | * @param array |
| 324 | * @return mixed |
| 325 | */ |
Greg Aker | a926328 | 2010-11-10 15:26:43 -0600 | [diff] [blame] | 326 | public function __set($var, $val) |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 327 | { |
Andrey Andreev | 8486e9c | 2012-03-26 20:24:12 +0300 | [diff] [blame] | 328 | if (in_array($var, $this->_properties)) |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 329 | { |
Andrey Andreev | 8486e9c | 2012-03-26 20:24:12 +0300 | [diff] [blame] | 330 | $this->_parent->$var = $val; |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 331 | } |
| 332 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 333 | |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 334 | } |
Derek Jones | 8dca041 | 2010-03-05 13:01:44 -0600 | [diff] [blame] | 335 | |
| 336 | /* End of file Driver.php */ |
Andrey Andreev | 2e3e230 | 2012-10-09 15:52:34 +0300 | [diff] [blame] | 337 | /* Location: ./system/libraries/Driver.php */ |