$val) { $this->template[$key] = $val; } } // -------------------------------------------------------------------- /** * Set the template * * @param array $template * @return boolean */ public function setTemplate($template) { if (! is_array($template)) { return false; } $this->template = $template; return true; } // -------------------------------------------------------------------- /** * Set the table heading * * Can be passed as an array or discreet params * * @param mixed * @return Table */ public function setHeading($args = []) { $this->heading = $this->_prepArgs(func_get_args()); return $this; } /** * Set the table footing * * Can be passed as an array or discreet params * * @param mixed * @return Table */ public function setFooting($args = []) { $this->footing = $this->_prepArgs(func_get_args()); return $this; } // -------------------------------------------------------------------- /** * Set columns. Takes a one-dimensional array as input and creates * a multi-dimensional array with a depth equal to the number of * columns. This allows a single array with many elements to be * displayed in a table that has a fixed column count. * * @param array $array * @param integer $columnLimit * @return array */ public function makeColumns($array = [], $columnLimit = 0) { if (! is_array($array) || count($array) === 0 || ! is_int($columnLimit)) { return false; } // Turn off the auto-heading feature since it's doubtful we // will want headings from a one-dimensional array $this->autoHeading = false; if ($columnLimit === 0) { return $array; } $new = []; do { $temp = array_splice($array, 0, $columnLimit); if (count($temp) < $columnLimit) { for ($i = count($temp); $i < $columnLimit; $i ++) { $temp[] = ' '; } } $new[] = $temp; } while (count($array) > 0); return $new; } // -------------------------------------------------------------------- /** * Set "empty" cells * * Can be passed as an array or discreet params * * @param mixed $value * @return Table */ public function setEmpty($value) { $this->emptyCells = $value; return $this; } // -------------------------------------------------------------------- /** * Add a table row * * Can be passed as an array or discreet params * * @param mixed * @return Table */ public function addRow($args = []) { $this->rows[] = $this->_prepArgs(func_get_args()); return $this; } // -------------------------------------------------------------------- /** * Prep Args * * Ensures a standard associative array format for all cell data * * @param array * @return array */ protected function _prepArgs($args) { // If there is no $args[0], skip this and treat as an associative array // This can happen if there is only a single key, for example this is passed to table->generate // array(array('foo'=>'bar')) if (isset($args[0]) && count($args) === 1 && is_array($args[0]) && ! isset($args[0]['data'])) { $args = $args[0]; } foreach ($args as $key => $val) { is_array($val) || $args[$key] = ['data' => $val]; } return $args; } // -------------------------------------------------------------------- /** * Add a table caption * * @param string $caption * @return Table */ public function setCaption($caption) { $this->caption = $caption; return $this; } // -------------------------------------------------------------------- /** * Generate the table * * @param mixed $tableData * @return string */ public function generate($tableData = null) { // The table data can optionally be passed to this function // either as a database result object or an array if (! empty($tableData)) { if ($tableData instanceof BaseResult) { $this->_setFromDBResult($tableData); } elseif (is_array($tableData)) { $this->_setFromArray($tableData); } } // Is there anything to display? No? Smite them! if (empty($this->heading) && empty($this->rows)) { return 'Undefined table data'; } // Compile and validate the template date $this->_compileTemplate(); // Validate a possibly existing custom cell manipulation function if (isset($this->function) && ! is_callable($this->function)) { $this->function = null; } // Build the table! $out = $this->template['table_open'] . $this->newline; // Add any caption here if ($this->caption) { $out .= '
', 'heading_cell_end' => ' | ', 'tfoot_open' => '', 'tfoot_close' => '', 'footing_row_start' => '
---|
', 'footing_cell_end' => ' | ', 'tbody_open' => '', 'tbody_close' => '', 'row_start' => '
', 'cell_end' => ' | ', 'row_alt_start' => '
', 'cell_alt_end' => ' | ', 'table_close' => '