<?php
/* --------------------------------------------------------------
table_block.php 2017-09-28
Gambio GmbH
http://www.gambio.de
Copyright (c) 2017 Gambio GmbH
Released under the GNU General Public License (Version 2)
[http://www.gnu.org/licenses/gpl-2.0.html]
--------------------------------------------------------------
*/
/* --------------------------------------------------------------
$Id: table_block.php 950 2005-05-14 16:45:21Z mz $
XT-Commerce - community made shopping
http://www.xt-commerce.com
Copyright (c) 2003 XT-Commerce
IMPORTANT! THIS FILE IS DEPRECATED AND WILL BE REPLACED IN THE FUTURE.
MODIFY IT ONLY FOR FIXES. DO NOT APPEND IT WITH NEW FEATURES, USE THE
NEW GX-ENGINE LIBRARIES INSTEAD.
--------------------------------------------------------------
based on:
(c) 2000-2001 The Exchange Project (earlier name of osCommerce)
(c) 2002-2003 osCommerce(table_block.php,v 1.5 2003/06/02); www.oscommerce.com
(c) 2003 nextcommerce (table_block.php,v 1.8 2003/08/18); www.nextcommerce.org
Released under the GNU General Public License
--------------------------------------------------------------*/
defined( '_VALID_XTC' ) or die( 'Direct Access to this location is not allowed.' );
class tableBlock {
public $table_border = '0';
public $table_width = '100%';
public $table_cellspacing = '0';
public $table_cellpadding = '2';
public $table_parameters = '';
public $table_row_parameters = '';
public $table_data_parameters = '';
public function get_table_box_string($contents) {
$tableBox_string = '';
$form_set = false;
if (isset($contents['form'])) {
$tableBox_string .= $contents['form'] . "\n";
$form_set = true;
xtc_array_shift($contents);
}
$tableBox_string .= '<table class="contentTable" border="' . $this->table_border . '" width="' . $this->table_width . '" cellspacing="' . $this->table_cellspacing . '" cellpadding="' . $this->table_cellpadding . '"';
if ($this->table_parameters != '') $tableBox_string .= ' ' . $this->table_parameters;
$tableBox_string .= '>' . "\n";
for ($i = 0, $n = sizeof($contents); $i < $n; $i++) {
$tableBox_string .= ' <tr';
if ($this->table_row_parameters != '') $tableBox_string .= ' ' . $this->table_row_parameters;
if (isset($contents[$i]['params'])) $tableBox_string .= ' ' . $contents[$i]['params'];
$tableBox_string .= '>' . "\n";
if (!isset($contents[$i][0])) $contents[$i][0] = '';
if (is_array($contents[$i][0])) {
for ($x = 0, $y = sizeof($contents[$i]); $x < $y; $x++) {
if ($contents[$i][$x]['text']) {
$tableBox_string .= ' <td ';
if ($contents[$i][$x]['align'] != '') $tableBox_string .= ' align="' . $contents[$i][$x]['align'] . '"';
if ($contents[$i][$x]['params']) {
$tableBox_string .= ' ' . $contents[$i][$x]['params'];
} elseif ($this->table_data_parameters != '') {
$tableBox_string .= ' ' . $this->table_data_parameters;
}
$tableBox_string .= '>';
if ($contents[$i][$x]['form']) $tableBox_string .= $contents[$i][$x]['form'];
$tableBox_string .= $contents[$i][$x]['text'];
if ($contents[$i][$x]['form']) $tableBox_string .= '</form>';
$tableBox_string .= '</td>' . "\n";
}
}
} else {
$tableBox_string .= ' <td ';
if (!isset($contents[$i]['align'])) $contents[$i]['align'] = '';
if ($contents[$i]['align'] != '') $tableBox_string .= ' align="' . $contents[$i]['align'] . '"';
if (isset($contents[$i]['params'])) {
$tableBox_string .= ' ' . $contents[$i]['params'];
} elseif ($this->table_data_parameters != '') {
$tableBox_string .= ' ' . $this->table_data_parameters;
}
$tableBox_string .= '>' . $contents[$i]['text'] . '</td>' . "\n";
}
$tableBox_string .= ' </tr>' . "\n";
}
$tableBox_string .= '</table>' . "\n";
if ($form_set) $tableBox_string .= '</form>' . "\n";
return $tableBox_string;
}
}