Ext
    
            
            in package
            
        
    
    
    
Base class for DataTables classes.
Table of Contents
Methods
- inst() : static
 - Static method to instantiate a new instance of a class (shorthand of 'instantiate').
 - instantiate() : static
 - Static method to instantiate a new instance of a class.
 - _getSet() : mixed
 - Common getter / setter function for DataTables classes.
 - _propExists() : bool
 - Determine if a property is available in a data set (allowing `null` to be a valid value).
 - _readProp() : mixed
 - Read a value from a data structure, using Javascript dotted object notation. This is the inverse of the `_writeProp` method and provides the same support, matching DataTables' ability to read nested JSON data objects.
 - _writeProp() : mixed
 - Write the field's value to an array structure, using Javascript dotted object notation to indicate JSON data structure. For example `name.first` gives the data structure: `name: { first: ... }`. This matches DataTables own ability to do this on the client-side, although this doesn't implement implement quite such a complex structure (no array / function support).
 
Methods
inst()
Static method to instantiate a new instance of a class (shorthand of 'instantiate').
    public
            static        inst() : static
    This method performs exactly the same actions as the 'instantiate' static method, but is simply shorter and easier to type!
Return values
static —class
instantiate()
Static method to instantiate a new instance of a class.
    public
            static        instantiate() : static
    A factory method that will create a new instance of the class that has extended 'Ext'. This allows classes to be instantiated and then chained - which otherwise isn't available until PHP 5.4. If using PHP 5.4 or later, simply create a 'new' instance of the target class and chain methods as normal.
Return values
static —Instantiated class
_getSet()
Common getter / setter function for DataTables classes.
    protected
                    _getSet(mixed &$prop, mixed $val[, bool $array = false ]) : mixed
    This getter / setter method makes building getter / setting methods easier, by abstracting everything to a single function call.
Parameters
- $prop : mixed
 - 
                    
The property to set
 - $val : mixed
 - 
                    
The value to set - if given as null, then we assume that the function is being used as a getter.
 - $array : bool = false
 - 
                    
Treat the target property as an array or not (default false). If used as an array, then values passed in are added to the $prop array.
 
_propExists()
Determine if a property is available in a data set (allowing `null` to be a valid value).
    protected
                    _propExists(string $name, array<string|int, mixed> $data) : bool
    Parameters
- $name : string
 - 
                    
Javascript dotted object name to write to
 - $data : array<string|int, mixed>
 - 
                    
Data source array to read from
 
Return values
bool —true if present, false otherwise
_readProp()
Read a value from a data structure, using Javascript dotted object notation. This is the inverse of the `_writeProp` method and provides the same support, matching DataTables' ability to read nested JSON data objects.
    protected
                    _readProp(string $name, array<string|int, mixed> $data) : mixed
    Parameters
- $name : string
 - 
                    
Javascript dotted object name to write to
 - $data : array<string|int, mixed>
 - 
                    
Data source array to read from
 
Return values
mixed —The read value, or null if no value found.
_writeProp()
Write the field's value to an array structure, using Javascript dotted object notation to indicate JSON data structure. For example `name.first` gives the data structure: `name: { first: ... }`. This matches DataTables own ability to do this on the client-side, although this doesn't implement implement quite such a complex structure (no array / function support).
    protected
                    _writeProp(array<string|int, mixed> &$out, string $name, mixed $value) : mixed
    Parameters
- $out : array<string|int, mixed>
 - 
                    
Array to write the data to
 - $name : string
 - 
                    
Javascript dotted object name to write to
 - $value : mixed
 - 
                    
Value to write