📄 table_block.php
字号:
<?php
/*
$Id: table_block.php,v 1.1 2002/01/12 16:13:53 hpdl Exp $
网络商店 - 吉鑫网络
http://www.chinaifc.com
Copyright (c) 2000,2001 网络商店
汗化版权所有吉鑫网络
*/
class tableBlock {
var $table_border = '0';
var $table_width = '100%';
var $table_cellspacing = '0';
var $table_cellpadding = '2';
var $table_parameters = '';
var $table_row_parameters = '';
var $table_data_parameters = '';
function tableBlock($contents) {
$tableBox_string = '<table 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";
$form_set = false;
if ($contents['form']) {
echo $contents['form'] . "\n";
$form_set = true;
tep_array_shift($contents);
}
for ($i=0; $i<sizeof($contents); $i++) {
$tableBox_string .= ' <tr';
if ($this->table_row_parameters != '') $tableBox_string .= ' ' . $this->table_row_parameters;
if ($contents[$i]['params']) $tableBox_string .= ' ' . $contents[$i]['params'];
$tableBox_string .= '>' . "\n";
if (is_array($contents[$i][0])) {
for ($x=0; $x<sizeof($contents[$i]); $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 ($contents[$i]['align'] != '') $tableBox_string .= ' align="' . $contents[$i]['align'] . '"';
if ($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";
if ($contents[$i]['form']) $tableBox_string .= '</form>' . "\n";
}
$tableBox_string .= '</table>' . "\n";
return $tableBox_string;
}
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -