-
Notifications
You must be signed in to change notification settings - Fork 0
CI_Driver
Mathieu Nayrolles edited this page Jan 20, 2016
·
1 revision
CodeIgniter Driver Class
This class enables you to create drivers for a Library based on the Driver Library. It handles the drivers' access to the parent library
- Class name: CI_Driver
- Namespace:
protected object $_parent
Instance of the parent class
- Visibility: protected
protected array $_methods = array()
List of methods in the parent class
- Visibility: protected
protected array $_properties = array()
List of properties in the parent class
- Visibility: protected
protected array $_reflections = array()
Array of methods and properties for the parent class(es)
- Visibility: protected
- This property is static.
void CI_Driver::decorate($parent)
Decorate
Decorates the child with the parent driver lib's methods and properties
- Visibility: public
- $parent mixed
mixed CI_Driver::__call($method, $args)
__call magic method
Handles access to the parent driver library's methods
- Visibility: public
- $method mixed
- $args mixed
mixed CI_Driver::__get($var)
__get magic method
Handles reading of the parent driver library's properties
- Visibility: public
- $var mixed
mixed CI_Driver::__set($var, $val)
__set magic method
Handles writing to the parent driver library's properties
- Visibility: public
- $var mixed
- $val mixed