123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538 |
- <?php
- /**
- * CodeIgniter
- *
- * An open source application development framework for PHP
- *
- * This content is released under the MIT License (MIT)
- *
- * Copyright (c) 2014 - 2019, British Columbia Institute of Technology
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- *
- * @package CodeIgniter
- * @author EllisLab Dev Team
- * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
- * @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
- * @license https://opensource.org/licenses/MIT MIT License
- * @link https://codeigniter.com
- * @since Version 1.3.1
- * @filesource
- */
- defined('BASEPATH') OR exit('No direct script access allowed');
- /**
- * HTML Table Generating Class
- *
- * Lets you create tables manually or from database result objects, or arrays.
- *
- * @package CodeIgniter
- * @subpackage Libraries
- * @category HTML Tables
- * @author EllisLab Dev Team
- * @link https://codeigniter.com/user_guide/libraries/table.html
- */
- class CI_Table {
- /**
- * Data for table rows
- *
- * @var array
- */
- public $rows = array();
- /**
- * Data for table heading
- *
- * @var array
- */
- public $heading = array();
- /**
- * Whether or not to automatically create the table header
- *
- * @var bool
- */
- public $auto_heading = TRUE;
- /**
- * Table caption
- *
- * @var string
- */
- public $caption = NULL;
- /**
- * Table layout template
- *
- * @var array
- */
- public $template = NULL;
- /**
- * Newline setting
- *
- * @var string
- */
- public $newline = "\n";
- /**
- * Contents of empty cells
- *
- * @var string
- */
- public $empty_cells = '';
- /**
- * Callback for custom table layout
- *
- * @var function
- */
- public $function = NULL;
- /**
- * Set the template from the table config file if it exists
- *
- * @param array $config (default: array())
- * @return void
- */
- public function __construct($config = array())
- {
- // initialize config
- foreach ($config as $key => $val)
- {
- $this->template[$key] = $val;
- }
- log_message('info', 'Table Class Initialized');
- }
- // --------------------------------------------------------------------
- /**
- * Set the template
- *
- * @param array $template
- * @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 CI_Table
- */
- public function set_heading($args = array())
- {
- $this->heading = $this->_prep_args(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 int $col_limit
- * @return array
- */
- 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 $value
- * @return CI_Table
- */
- public function set_empty($value)
- {
- $this->empty_cells = $value;
- return $this;
- }
- // --------------------------------------------------------------------
- /**
- * Add a table row
- *
- * Can be passed as an array or discreet params
- *
- * @param mixed
- * @return CI_Table
- */
- public function add_row($args = array())
- {
- $this->rows[] = $this->_prep_args(func_get_args());
- return $this;
- }
- // --------------------------------------------------------------------
- /**
- * 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]) && ! isset($args[0]['data']))
- {
- $args = $args[0];
- }
- foreach ($args as $key => $val)
- {
- is_array($val) OR $args[$key] = array('data' => $val);
- }
- return $args;
- }
- // --------------------------------------------------------------------
- /**
- * Add a table caption
- *
- * @param string $caption
- * @return CI_Table
- */
- public function set_caption($caption)
- {
- $this->caption = $caption;
- return $this;
- }
- // --------------------------------------------------------------------
- /**
- * Generate the table
- *
- * @param mixed $table_data
- * @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 ( ! empty($table_data))
- {
- if ($table_data instanceof CI_DB_result)
- {
- $this->_set_from_db_result($table_data);
- }
- elseif (is_array($table_data))
- {
- $this->_set_from_array($table_data);
- }
- }
- // 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->_compile_template();
- // 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 .= '<caption>'.$this->caption.'</caption>'.$this->newline;
- }
- // Is there a table heading to display?
- if ( ! empty($this->heading))
- {
- $out .= $this->template['thead_open'].$this->newline.$this->template['heading_row_start'].$this->newline;
- foreach ($this->heading as $heading)
- {
- $temp = $this->template['heading_cell_start'];
- foreach ($heading as $key => $val)
- {
- if ($key !== 'data')
- {
- $temp = str_replace('<th', '<th '.$key.'="'.$val.'"', $temp);
- }
- }
- $out .= $temp.(isset($heading['data']) ? $heading['data'] : '').$this->template['heading_cell_end'];
- }
- $out .= $this->template['heading_row_end'].$this->newline.$this->template['thead_close'].$this->newline;
- }
- // Build the table rows
- if ( ! empty($this->rows))
- {
- $out .= $this->template['tbody_open'].$this->newline;
- $i = 1;
- foreach ($this->rows as $row)
- {
- if ( ! is_array($row))
- {
- break;
- }
- // We use modulus to alternate the row colors
- $name = fmod($i++, 2) ? '' : 'alt_';
- $out .= $this->template['row_'.$name.'start'].$this->newline;
- foreach ($row as $cell)
- {
- $temp = $this->template['cell_'.$name.'start'];
- foreach ($cell as $key => $val)
- {
- if ($key !== 'data')
- {
- $temp = str_replace('<td', '<td '.$key.'="'.$val.'"', $temp);
- }
- }
- $cell = isset($cell['data']) ? $cell['data'] : '';
- $out .= $temp;
- if ($cell === '' OR $cell === NULL)
- {
- $out .= $this->empty_cells;
- }
- elseif (isset($this->function))
- {
- $out .= call_user_func($this->function, $cell);
- }
- else
- {
- $out .= $cell;
- }
- $out .= $this->template['cell_'.$name.'end'];
- }
- $out .= $this->template['row_'.$name.'end'].$this->newline;
- }
- $out .= $this->template['tbody_close'].$this->newline;
- }
- $out .= $this->template['table_close'];
- // Clear table class properties before generating the table
- $this->clear();
- return $out;
- }
- // --------------------------------------------------------------------
- /**
- * Clears the table arrays. Useful if multiple tables are being generated
- *
- * @return CI_Table
- */
- public function clear()
- {
- $this->rows = array();
- $this->heading = array();
- $this->auto_heading = TRUE;
- return $this;
- }
- // --------------------------------------------------------------------
- /**
- * Set table data from a database result object
- *
- * @param CI_DB_result $object Database result object
- * @return void
- */
- protected function _set_from_db_result($object)
- {
- // First generate the headings from the table column names
- if ($this->auto_heading === TRUE && empty($this->heading))
- {
- $this->heading = $this->_prep_args($object->list_fields());
- }
- foreach ($object->result_array() as $row)
- {
- $this->rows[] = $this->_prep_args($row);
- }
- }
- // --------------------------------------------------------------------
- /**
- * Set table data from an array
- *
- * @param array $data
- * @return void
- */
- protected function _set_from_array($data)
- {
- if ($this->auto_heading === TRUE && empty($this->heading))
- {
- $this->heading = $this->_prep_args(array_shift($data));
- }
- foreach ($data as &$row)
- {
- $this->rows[] = $this->_prep_args($row);
- }
- }
- // --------------------------------------------------------------------
- /**
- * Compile Template
- *
- * @return 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];
- }
- }
- }
- // --------------------------------------------------------------------
- /**
- * Default Template
- *
- * @return array
- */
- protected function _default_template()
- {
- return array(
- 'table_open' => '<table border="0" cellpadding="4" cellspacing="0">',
- 'thead_open' => '<thead>',
- 'thead_close' => '</thead>',
- 'heading_row_start' => '<tr>',
- 'heading_row_end' => '</tr>',
- 'heading_cell_start' => '<th>',
- 'heading_cell_end' => '</th>',
- 'tbody_open' => '<tbody>',
- 'tbody_close' => '</tbody>',
- 'row_start' => '<tr>',
- 'row_end' => '</tr>',
- 'cell_start' => '<td>',
- 'cell_end' => '</td>',
- 'row_alt_start' => '<tr>',
- 'row_alt_end' => '</tr>',
- 'cell_alt_start' => '<td>',
- 'cell_alt_end' => '</td>',
- 'table_close' => '</table>'
- );
- }
- }
|