Chumper\Datatable\Table::__construct PHP Method

__construct() public method

public __construct ( )
    function __construct()
    {
        $this->config = Config::get('datatable::table');
        $this->setId($this->config['id']);
        $this->setClass($this->config['class']);
        $this->setOptions($this->config['options']);
        $this->setCallbacks($this->config['callbacks']);
        $this->noScript = $this->config['noScript'];
        $this->table_view = $this->config['table_view'];
        $this->script_view = $this->config['script_view'];
    }