dbTable::dbTable PHP Method

dbTable() public method

Iniitializes a new table object.
public dbTable ( &$parent, array $attributes = NULL )
$attributes array Array of table attributes.
    function dbTable(&$parent, $attributes = NULL)
    {
        $this->parent = $parent;
        $this->name = $this->prefix($attributes['NAME']);
    }