$val) { $this->template[$key] = $val; } log_message('debug', 'Table Class Initialized'); } // -------------------------------------------------------------------- /** * Set the template * * @param array * @return bool */ public function set_template($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 void */ public function set_heading($args = array()) { $args = func_get_args(); $this->heading = $this->_prep_args($args); } // -------------------------------------------------------------------- /** * 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 * @param int * @return void */ public function make_columns($array = array(), $col_limit = 0) { if ( ! is_array($array) OR count($array) === 0 OR ! is_int($col_limit)) { return FALSE; } // Turn off the auto-heading feature since it's doubtful we // will want headings from a one-dimensional array $this->auto_heading = FALSE; if ($col_limit === 0) { return $array; } $new = array(); do { $temp = array_splice($array, 0, $col_limit); if (count($temp) < $col_limit) { for ($i = count($temp); $i < $col_limit; $i++) { $temp[] = ' '; } } $new[] = $temp; } while (count($array) > 0); return $new; } // -------------------------------------------------------------------- /** * Set "empty" cells * * Can be passed as an array or discreet params * * @param mixed * @return void */ public function set_empty($value) { $this->empty_cells = $value; } // -------------------------------------------------------------------- /** * Add a table row * * Can be passed as an array or discreet params * * @param mixed * @return void */ public function add_row($args = array()) { $args = func_get_args(); $this->rows[] = $this->_prep_args($args); } // -------------------------------------------------------------------- /** * Prep Args * * Ensures a standard associative array format for all cell data * * @param array * @return array */ protected function _prep_args($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])) { // args sent as indexed array if ( ! isset($args[0]['data'])) { foreach ($args[0] as $key => $val) { $args[$key] = (is_array($val) && isset($val['data'])) ? $val : array('data' => $val); } } } else { foreach ($args as $key => $val) { if ( ! is_array($val)) { $args[$key] = array('data' => $val); } } } return $args; } // -------------------------------------------------------------------- /** * Add a table caption * * @param string * @return void */ public function set_caption($caption) { $this->caption = $caption; } // -------------------------------------------------------------------- /** * Generate the table * * @param mixed * @return string */ public function generate($table_data = NULL) { // The table data can optionally be passed to this function // either as a database result object or an array if ( ! is_null($table_data)) { if (is_object($table_data)) { $this->_set_from_object($table_data); } elseif (is_array($table_data)) { $set_heading = (count($this->heading) !== 0 OR $this->auto_heading !== FALSE); $this->_set_from_array($table_data, $set_heading); } } // Is there anything to display? No? Smite them! if (count($this->heading) === 0 && count($this->rows) === 0) { return 'Undefined table data'; } // Compile and validate the template date $this->_compile_template(); // set a custom cell manipulation function to a locally scoped variable so its callable $function = $this->function; // Build the table! $out = $this->template['table_open'].$this->newline; // Add any caption here if ($this->caption) { $out .= $this->newline.'
', 'heading_cell_end' => ' | ', 'tbody_open' => '', 'tbody_close' => '', 'row_start' => '
---|
', 'cell_end' => ' | ', 'row_alt_start' => '
', 'cell_alt_end' => ' | ', 'table_close' => '