CI_Table::_compile_template PHP Méthode

_compile_template() protected méthode

Compile Template
protected _compile_template ( ) : void
Résultat void
    protected function _compile_template()
    {
        if ($this->template === NULL) {
            $this->template = $this->_default_template();
            return;
        }
        $this->temp = $this->_default_template();
        foreach (array('table_open', 'thead_open', 'thead_close', 'heading_row_start', 'heading_row_end', 'heading_cell_start', 'heading_cell_end', 'tbody_open', 'tbody_close', 'row_start', 'row_end', 'cell_start', 'cell_end', 'row_alt_start', 'row_alt_end', 'cell_alt_start', 'cell_alt_end', 'table_close') as $val) {
            if (!isset($this->template[$val])) {
                $this->template[$val] = $this->temp[$val];
            }
        }
    }