\CI_Driver

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

Summary

Methods
Properties
Constants
decorate()
__call()
__get()
__set()
No public properties found
No constants found
No protected methods found
$_parent
$_methods
$_properties
$_reflections
N/A
No private methods found
No private properties found
N/A

Properties

$_parent

$_parent : object

Instance of the parent class

Type

object

$_methods

$_methods : array

List of methods in the parent class

Type

array

$_properties

$_properties : array

List of properties in the parent class

Type

array

$_reflections

$_reflections : array

Array of methods and properties for the parent class(es)

Type

array

Methods

decorate()

decorate(  $parent) : void

Decorate

Decorates the child with the parent driver lib's methods and properties

Parameters

$parent

__call()

__call(  $method,   $args = array()) : mixed

__call magic method

Handles access to the parent driver library's methods

Parameters

$method
$args

Returns

mixed

__get()

__get(  $var) : mixed

__get magic method

Handles reading of the parent driver library's properties

Parameters

$var

Returns

mixed

__set()

__set(  $var,   $val) : mixed

__set magic method

Handles writing to the parent driver library's properties

Parameters

$var
$val

Returns

mixed