table_border) . '" width="' . zen_output_string($this->table_width) . '" cellspacing="' . zen_output_string($this->table_cellspacing) . '" cellpadding="' . zen_output_string($this->table_cellpadding) . '"'; if (zen_not_null($this->table_parameters)) $tableBox_string .= ' ' . $this->table_parameters; $tableBox_string .= '>' . "\n"; for ($i=0, $n=sizeof($contents); $i<$n; $i++) { if (isset($contents[$i]['form']) && zen_not_null($contents[$i]['form'])) $tableBox_string .= $contents[$i]['form'] . "\n"; $tableBox_string .= ' table_row_parameters)) $tableBox_string .= ' ' . $this->table_row_parameters; if (isset($contents[$i]['params']) && zen_not_null($contents[$i]['params'])) $tableBox_string .= ' ' . $contents[$i]['params']; $tableBox_string .= '>' . "\n"; if (isset($contents[$i][0]) && is_array($contents[$i][0])) { for ($x=0, $n2=sizeof($contents[$i]); $x<$n2; $x++) { if (isset($contents[$i][$x]['text']) && zen_not_null($contents[$i][$x]['text'])) { $tableBox_string .= ' table_data_parameters)) { $tableBox_string .= ' ' . $this->table_data_parameters; } $tableBox_string .= '>'; if (isset($contents[$i][$x]['form']) && zen_not_null($contents[$i][$x]['form'])) $tableBox_string .= $contents[$i][$x]['form']; $tableBox_string .= $contents[$i][$x]['text']; if (isset($contents[$i][$x]['form']) && zen_not_null($contents[$i][$x]['form'])) $tableBox_string .= ''; $tableBox_string .= '' . "\n"; } } } else { $tableBox_string .= ' table_data_parameters)) { $tableBox_string .= ' ' . $this->table_data_parameters; } $tableBox_string .= '>' . $contents[$i]['text'] . '' . "\n"; } $tableBox_string .= ' ' . "\n"; if (isset($contents[$i]['form']) && zen_not_null($contents[$i]['form'])) $tableBox_string .= '' . "\n"; } $tableBox_string .= '' . "\n"; if ($direct_output == true) echo $tableBox_string; return $tableBox_string; } } // class infoBox extends tableBox { // function infoBox($contents) { // $info_box_contents = array(); // $info_box_contents[] = array('text' => $this->infoBoxContents($contents)); // $this->table_cellpadding = '1'; // $this->table_parameters = 'class="sideBox"'; // $this->tableBox($info_box_contents, true); // } // // function infoBoxContents($contents) { // $this->table_cellpadding = '3'; // $this->table_parameters = 'class="sideBoxContent"'; // $info_box_contents = array(); // $info_box_contents[] = array(array('text' => zen_draw_separator('pixel_trans.gif', '100%', '1'))); // for ($i=0, $n=sizeof($contents); $i<$n; $i++) { // $info_box_contents[] = array(array('align' => (isset($contents[$i]['align']) ? $contents[$i]['align'] : ''), // 'form' => (isset($contents[$i]['form']) ? $contents[$i]['form'] : ''), // 'params' => 'class="boxText"', // 'text' => (isset($contents[$i]['text']) ? $contents[$i]['text'] : ''))); // } // $info_box_contents[] = array(array('text' => zen_draw_separator('pixel_trans.gif', '100%', '1'))); // return $this->tableBox($info_box_contents); // } // } // $no_corners = true eliminates all images from the header completely. // class infoBoxHeading extends tableBox { // function infoBoxHeading($contents, $left_corner = true, $right_corner = true, $right_arrow = false, $no_corners = false) { // $this->table_cellpadding = '0'; // // if ($left_corner == true) { // $left_corner = zen_image(DIR_WS_TEMPLATE_IMAGES . 'infobox/corner_left.gif'); // } else { // if ($no_corners == true) { // $left_corner = ''; // } else { // $left_corner = zen_image(DIR_WS_TEMPLATE_IMAGES . 'infobox/corner_right_left.gif'); // } // } // if ($right_arrow == true) { // $right_arrow = '' . zen_image(DIR_WS_TEMPLATE_IMAGES . 'infobox/arrow_right.gif', //ICON_ARROW_RIGHT) . ''; // } else { // $right_arrow = ''; // } // if ($right_corner == true) { // $right_corner = $right_arrow . zen_image(DIR_WS_TEMPLATE_IMAGES . 'infobox/corner_right.gif'); // } else { // if ($no_corners == true) { // $right_corner = ''; // } else { // $right_corner = $right_arrow . zen_draw_separator('pixel_trans.gif', '11', '14'); // } // } // // $info_box_contents = array(); // $info_box_contents[] = array(array('params' => 'height="14" class="sideBoxHeading"', // 'text' => $left_corner), // array('params' => 'width="100%" height="14" class="sideBoxHeading"', // 'text' => $contents[0]['text']), // array('params' => 'height="14" class="sideBoxHeading" ', // 'text' => $right_corner)); // // $this->tableBox($info_box_contents, true); // } // } // class contentBox extends tableBox { // function contentBox($contents) { // $info_box_contents = array(); // $info_box_contents[] = array('text' => $this->contentBoxContents($contents)); // $this->table_cellpadding = '1'; // $this->table_parameters = 'class="sideBox"'; // $this->tableBox($info_box_contents, true); // } // function contentBoxContents($contents) { // $this->table_cellpadding = '4'; // $this->table_parameters = 'class="sideBoxContents"'; // return $this->tableBox($contents); // } // } // class contentBoxHeading extends tableBox { // function contentBoxHeading($contents) { // $this->table_width = '100%'; // $this->table_cellpadding = '0'; // // $info_box_contents = array(); // $info_box_contents[] = array(array('params' => 'height="14" class="sideBoxHeading"', // 'text' => zen_image(DIR_WS_TEMPLATE_IMAGES . 'infobox/corner_left.gif')), // array('params' => 'height="14" class="sideBoxHeading" width="100%"', // 'text' => $contents[0]['text']), // array('params' => 'height="14" class="sideBoxHeading"', // 'text' => zen_image(DIR_WS_TEMPLATE_IMAGES . 'infobox/corner_right_left.gif'))); // // $this->tableBox($info_box_contents, true); // } // } // class errorBox extends tableBox { // function errorBox($contents) { // $this->table_data_parameters = 'class="errorBox"'; // $this->tableBox($contents, true); // } // } //class productListingBox extends tableBox { // function productListingBox($contents) { // $this->table_parameters = 'class="productListing"'; // $this->tableBox($contents, true); // } //} ?>