[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
Zen Cart 源代码 layout_controller.php

Zen Cart 源代码 layout_controller.php




下载文件

文件名: layout_controller.php
文件类型: PHP文件
文件大小: 24.66 KiB
MD5: 5c360e91136a75da04a6b8701025962c

layout_controller.php - 关闭高亮
  1. <?php
  2. /**
  3.  * @package admin
  4.  * @copyright Copyright 2003-2011 Zen Cart Development Team
  5.  * @copyright Portions Copyright 2003 osCommerce
  6.  * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
  7.  * @version $Id: layout_controller.php 19294 2011-07-28 18:15:46Z drbyte $
  8.  */
  9.  
  10.   require('includes/application_top.php');
  11.  
  12. // Check all existing boxes are in the main /sideboxes
  13.   $boxes_directory = DIR_FS_CATALOG_MODULES . 'sideboxes/';
  14.  
  15.   $file_extension = substr($PHP_SELF, strrpos($PHP_SELF, '.'));
  16.   $directory_array = array();
  17.   if ($dir = @dir($boxes_directory)) {
  18.     while ($file = $dir->read()) {
  19.       if (!is_dir($boxes_directory . $file)) {
  20.         if (substr($file, strrpos($file, '.')) == $file_extension) {
  21.           if ($file != 'empty.txt') {
  22.             $directory_array[] = $file;
  23.           }
  24.         }
  25.       }
  26.     }
  27.     if (sizeof($directory_array)) {
  28.       sort($directory_array);
  29.     }
  30.     $dir->close();
  31.   }
  32.  
  33. // Check all exisiting boxes are in the current template /sideboxes/template_dir
  34.   $dir_check= $directory_array;
  35.   $boxes_directory = DIR_FS_CATALOG_MODULES . 'sideboxes/' . $template_dir . '/';
  36.  
  37.   $file_extension = substr($PHP_SELF, strrpos($PHP_SELF, '.'));
  38.  
  39.   if ($dir = @dir($boxes_directory)) {
  40.     while ($file = $dir->read()) {
  41.       if (!is_dir($boxes_directory . $file)) {
  42.           if (in_array($file, $dir_check, TRUE)) {
  43.             // skip name exists
  44.           } else {
  45.             if ($file != 'empty.txt') {
  46.               $directory_array[] = $file;
  47.             }
  48.           }
  49.       }
  50.     }
  51.     sort($directory_array);
  52.     $dir->close();
  53.   }
  54.  
  55.   $warning_new_box='';
  56.   $installed_boxes = array();
  57.   for ($i = 0, $n = sizeof($directory_array); $i < $n; $i++) {
  58.     $file = $directory_array[$i];
  59.  
  60. // Verify Definitions
  61.     $definitions = $db->Execute("select layout_box_name from " . TABLE_LAYOUT_BOXES . " where layout_box_name='" . zen_db_input($file) . "' and layout_template='" . zen_db_input($template_dir) . "'");
  62.     if ($definitions->EOF) {
  63.       if (!strstr($file, 'ezpages_bar')) {
  64.         $warning_new_box .= $file . ' ';
  65.       } else {
  66.         // skip ezpage sideboxes
  67. //        $warning_new_box .= $file . ' - HIDDEN ';
  68.       }
  69.       $db->Execute("insert into " . TABLE_LAYOUT_BOXES . "
  70.                  (layout_template, layout_box_name, layout_box_status, layout_box_location, layout_box_sort_order, layout_box_sort_order_single, layout_box_status_single)
  71.                  values ('" . zen_db_input($template_dir) . "', '" . zen_db_input($file) . "', 0, 0, 0, 0, 0)");
  72.     }
  73.   }
  74.  
  75. ////////////////////////////////////
  76.   if ($_GET['action']) {
  77.     switch ($_GET['action']) {
  78.       case 'insert':
  79.         $layout_box_name = zen_db_prepare_input($_POST['layout_box_name']);
  80.         $layout_box_status = zen_db_prepare_input($_POST['layout_box_status']);
  81.         $layout_box_location = zen_db_prepare_input($_POST['layout_box_location']);
  82.         $layout_box_sort_order = zen_db_prepare_input($_POST['layout_box_sort_order']);
  83.         $layout_box_sort_order_single = zen_db_prepare_input($_POST['layout_box_sort_order_single']);
  84.         $layout_box_status_single = zen_db_prepare_input($_POST['layout_box_status_single']);
  85.  
  86.         $db->Execute("insert into " . TABLE_LAYOUT_BOXES . "
  87.                    (layout_box_name, layout_box_status, layout_box_location, layout_box_sort_order, layout_box_sort_order_single, layout_box_status_single)
  88.                    values ('" . zen_db_input($layout_box_name) . "',
  89.                            '" . zen_db_input($layout_box_status) . "',
  90.                            '" . zen_db_input($layout_box_location) . "',
  91.                            '" . zen_db_input($layout_box_sort_order) . "',
  92.                            '" . zen_db_input($layout_box_sort_order_single) . "',
  93.                            '" . zen_db_input($layout_box_status_single) . "')");
  94.  
  95.         $messageStack->add_session(SUCCESS_BOX_ADDED . $_GET['layout_box_name'], 'success');
  96.         zen_redirect(zen_href_link(FILENAME_LAYOUT_CONTROLLER));
  97.         break;
  98.       case 'save':
  99.         $box_id = zen_db_prepare_input($_GET['cID']);
  100.         // $layout_box_name = zen_db_prepare_input($_POST['layout_box_name']);
  101.         $layout_box_status = zen_db_prepare_input($_POST['layout_box_status']);
  102.         $layout_box_location = zen_db_prepare_input($_POST['layout_box_location']);
  103.         $layout_box_sort_order = zen_db_prepare_input($_POST['layout_box_sort_order']);
  104.         $layout_box_sort_order_single = zen_db_prepare_input($_POST['layout_box_sort_order_single']);
  105.         $layout_box_status_single = zen_db_prepare_input($_POST['layout_box_status_single']);
  106.  
  107.         $db->Execute("update " . TABLE_LAYOUT_BOXES . " set layout_box_status = '" . zen_db_input($layout_box_status) . "', layout_box_location = '" . zen_db_input($layout_box_location) . "', layout_box_sort_order = '" . zen_db_input($layout_box_sort_order) . "', layout_box_sort_order_single = '" . zen_db_input($layout_box_sort_order_single) . "', layout_box_status_single = '" . zen_db_input($layout_box_status_single) . "' where layout_id = '" . zen_db_input($box_id) . "'");
  108.  
  109.         $messageStack->add_session(SUCCESS_BOX_UPDATED . $_GET['layout_box_name'], 'success');
  110.         zen_redirect(zen_href_link(FILENAME_LAYOUT_CONTROLLER, 'page=' . $_GET['page'] . '&cID=' . $box_id));
  111.         break;
  112.       case 'deleteconfirm':
  113.         $box_id = zen_db_prepare_input($_POST['cID']);
  114.  
  115.         $db->Execute("delete from " . TABLE_LAYOUT_BOXES . " where layout_id = '" . zen_db_input($box_id) . "'");
  116.  
  117.         $messageStack->add_session(SUCCESS_BOX_DELETED . $_GET['layout_box_name'], 'success');
  118.         zen_redirect(zen_href_link(FILENAME_LAYOUT_CONTROLLER, 'page=' . $_GET['page']));
  119.         break;
  120.       case 'reset_defaults':
  121.         $reset_boxes = $db->Execute("select * from " . TABLE_LAYOUT_BOXES . " where layout_template= 'default_template_settings'");
  122.         while (!$reset_boxes->EOF) {
  123.           $db->Execute("update " . TABLE_LAYOUT_BOXES . " set layout_box_status= '" . $reset_boxes->fields['layout_box_status'] . "', layout_box_location= '" . $reset_boxes->fields['layout_box_location'] . "', layout_box_sort_order='" . $reset_boxes->fields['layout_box_sort_order'] . "', layout_box_sort_order_single='" . $reset_boxes->fields['layout_box_sort_order_single'] . "', layout_box_status_single='" . $reset_boxes->fields['layout_box_status_single'] . "' where layout_box_name='" . $reset_boxes->fields['layout_box_name'] . "' and layout_template='" . zen_db_input($template_dir) . "'");
  124.           $reset_boxes->MoveNext();
  125.         }
  126.  
  127.         $messageStack->add_session(SUCCESS_BOX_RESET . $template_dir, 'success');
  128.         zen_redirect(zen_href_link(FILENAME_LAYOUT_CONTROLLER, 'page=' . $_GET['page']));
  129.         break;
  130.     }
  131.   }
  132.  
  133. ?>
  134. <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
  135. <html <?php echo HTML_PARAMS; ?>>
  136. <head>
  137. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
  138. <title><?php echo TITLE; ?></title>
  139. <link rel="stylesheet" type="text/css" href="includes/stylesheet.css">
  140. <link rel="stylesheet" type="text/css" href="includes/cssjsmenuhover.css" media="all" id="hoverJS">
  141. <script language="javascript" src="includes/menu.js"></script>
  142. <script language="javascript" src="includes/general.js"></script>
  143. <script type="text/javascript">
  144.   <!--
  145.   function init()
  146.   {
  147.     cssjsmenu('navbar');
  148.     if (document.getElementById)
  149.     {
  150.       var kill = document.getElementById('hoverJS');
  151.       kill.disabled = true;
  152.     }
  153.   }
  154.   // -->
  155. </script>
  156. </head>
  157. <body onload="init()">
  158. <!-- header //-->
  159. <?php require(DIR_WS_INCLUDES . 'header.php'); ?>
  160. <!-- header_eof //-->
  161.  
  162. <!-- body //-->
  163. <table border="0" width="100%" cellspacing="2" cellpadding="2">
  164.   <tr>
  165. <!-- body_text //-->
  166.     <td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2">
  167.  
  168.       <tr>
  169.         <td><table border="0" width="100%" cellspacing="0" cellpadding="0">
  170. <?php
  171. if ($warning_new_box) {
  172. ?>
  173.         <tr class="messageStackError">
  174.           <td colspan="2" class="messageStackError">
  175. <?php echo 'WARNING: New boxes found: ' . $warning_new_box; ?>
  176.           </td>
  177.         </tr>
  178. <?php
  179. }
  180. ?>
  181.           <tr>
  182.             <td class="pageHeading"><?php echo HEADING_TITLE . ' ' . $template_dir; ?></td>
  183.             <td class="pageHeading" align="right"><?php echo zen_draw_separator('pixel_trans.gif', HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>
  184.           </tr>
  185.         </table></td>
  186.       </tr>
  187.  
  188.       <tr>
  189.         <td><table border="0" width="100%" cellspacing="0" cellpadding="0">
  190.               <tr>
  191.                 <td class="main" align="left"><strong>Boxes Path: </strong><?php echo DIR_FS_CATALOG_MODULES . ' ... ' . '<br />&nbsp;'; ?></td>
  192.               </tr>
  193.           <tr>
  194.             <td valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2">
  195.               <tr class="dataTableHeadingRow">
  196.                 <td class="dataTableHeadingContent" align="left" width="200"><?php echo TABLE_HEADING_LAYOUT_BOX_NAME; ?></td>
  197.                 <td class="dataTableHeadingContent" align="center"><?php echo TABLE_HEADING_LAYOUT_BOX_STATUS; ?></td>
  198.                 <td class="dataTableHeadingContent" align="center"><?php echo TABLE_HEADING_LAYOUT_BOX_LOCATION; ?></td>
  199.                 <td class="dataTableHeadingContent" align="center"><?php echo TABLE_HEADING_LAYOUT_BOX_SORT_ORDER; ?></td>
  200.                 <td class="dataTableHeadingContent" align="center"><?php echo TABLE_HEADING_LAYOUT_BOX_SORT_ORDER_SINGLE; ?></td>
  201.                 <td class="dataTableHeadingContent" align="center"><?php echo TABLE_HEADING_LAYOUT_BOX_STATUS_SINGLE; ?></td>
  202.                 <td colspan="2" class="dataTableHeadingContent" align="center"><?php echo TABLE_HEADING_ACTION; ?>&nbsp;</td>
  203.               </tr>
  204.  
  205. <?php
  206.   $boxes_directory = DIR_FS_CATALOG_MODULES . 'sideboxes' . '/';
  207.   $boxes_directory_template = DIR_FS_CATALOG_MODULES . 'sideboxes/' . $template_dir . '/';
  208.  
  209.   $column_controller = $db->Execute("select layout_id, layout_box_name, layout_box_status, layout_box_location, layout_box_sort_order, layout_box_sort_order_single, layout_box_status_single from " . TABLE_LAYOUT_BOXES . " where (layout_template='" . zen_db_input($template_dir) . "' and layout_box_name NOT LIKE '%ezpages_bar%') order by  layout_box_location, layout_box_sort_order");
  210.   while (!$column_controller->EOF) {
  211. //    if (((!$_GET['cID']) || (@$_GET['cID'] == $column_controller->fields['layout_id'])) && (!$bInfo) && (substr($_GET['action'], 0, 3) != 'new')) {
  212.   if ((!isset($_GET['cID']) || (isset($_GET['cID']) && ($_GET['cID'] == $column_controller->fields['layout_id']))) && !isset($bInfo) && (substr($action, 0, 3) != 'new')) {
  213.       $bInfo = new objectInfo($column_controller->fields);
  214.     }
  215.  
  216. //  if ( (is_object($bInfo)) && ($column_controller->fields['layout_id'] == $bInfo->layout_id) ) {
  217.     if (isset($bInfo) && is_object($bInfo) && ($column_controller->fields['layout_id'] == $bInfo->layout_id)) {
  218.       echo '              <tr class="dataTableRowSelected" onmouseover="this.style.cursor=\'hand\'" onclick="document.location.href=\'' . zen_href_link(FILENAME_LAYOUT_CONTROLLER, 'page=' . $_GET['page'] . '&cID=' . $bInfo->layout_id . '&action=edit') . '\'">' . "\n";
  219.     } else {
  220.       echo '              <tr class="dataTableRow" onmouseover="this.className=\'dataTableRowOver\';this.style.cursor=\'hand\'" onmouseout="this.className=\'dataTableRow\'" onclick="document.location.href=\'' . zen_href_link(FILENAME_LAYOUT_CONTROLLER, 'page=' . $_GET['page'] . '&cID=' . $column_controller->fields['layout_id']) . '\'">' . "\n";
  221.     }
  222. ?>
  223.                 <td class="dataTableContent" width="100"><?php echo (file_exists($boxes_directory_template . $column_controller->fields['layout_box_name']) ? '<span class="alert">' . str_replace(DIR_FS_CATALOG_MODULES, '', $boxes_directory_template) . '</span>' . $column_controller->fields['layout_box_name'] : str_replace(DIR_FS_CATALOG_MODULES, '', $boxes_directory) . $column_controller->fields['layout_box_name']); ?></td>
  224.                 <td class="<?php echo ( (file_exists($boxes_directory . $column_controller->fields['layout_box_name']) or file_exists($boxes_directory_template . $column_controller->fields['layout_box_name'])) ? dataTableContent : messageStackError ); ?>" align="center"><?php echo ($column_controller->fields['layout_box_status']=='1' ? TEXT_ON : '<span class="alert">' . TEXT_OFF .'</span>'); ?></td>
  225.                 <td class="<?php echo ( (file_exists($boxes_directory . $column_controller->fields['layout_box_name']) or file_exists($boxes_directory_template . $column_controller->fields['layout_box_name'])) ? dataTableContent : messageStackError ); ?>" align="center"><?php echo ($column_controller->fields['layout_box_location']=='0' ? TEXT_LEFT : TEXT_RIGHT); ?></td>
  226.                 <td class="<?php echo ( (file_exists($boxes_directory . $column_controller->fields['layout_box_name']) or file_exists($boxes_directory_template . $column_controller->fields['layout_box_name'])) ? dataTableContent : messageStackError ); ?>" align="center"><?php echo $column_controller->fields['layout_box_sort_order']; ?></td>
  227.                 <td class="<?php echo ( (file_exists($boxes_directory . $column_controller->fields['layout_box_name']) or file_exists($boxes_directory_template . $column_controller->fields['layout_box_name'])) ? dataTableContent : messageStackError ); ?>" align="center"><?php echo $column_controller->fields['layout_box_sort_order_single']; ?></td>
  228.                 <td class="<?php echo ( (file_exists($boxes_directory . $column_controller->fields['layout_box_name']) or file_exists($boxes_directory_template . $column_controller->fields['layout_box_name'])) ? dataTableContent : messageStackError ); ?>" align="center"><?php echo ($column_controller->fields['layout_box_status_single']=='1' ? TEXT_ON : '<span class="alert">' . TEXT_OFF . '</span>'); ?></td>
  229.  
  230.                 <td class="dataTableContent" align="right"><?php echo ( (file_exists($boxes_directory . $column_controller->fields['layout_box_name']) or file_exists($boxes_directory_template . $column_controller->fields['layout_box_name'])) ? TEXT_GOOD_BOX : TEXT_BAD_BOX) ; ?><?php echo '<a href="' . zen_href_link(FILENAME_LAYOUT_CONTROLLER, 'page=' . $_GET['page'] . '&cID=' . $column_controller->fields['layout_id'] . '&action=edit') . '">' . zen_image(DIR_WS_IMAGES . 'icon_edit.gif', IMAGE_EDIT) . '</a>'; ?></td>
  231.  
  232.                 <td class="dataTableContent" align="right"><?php echo ( (file_exists($boxes_directory . $column_controller->fields['layout_box_name']) or file_exists($boxes_directory_template . $column_controller->fields['layout_box_name'])) ? TEXT_GOOD_BOX : TEXT_BAD_BOX) ; ?><?php if ( (is_object($bInfo)) && ($column_controller->fields['layout_id'] == $bInfo->layout_id) ) { echo zen_image(DIR_WS_IMAGES . 'icon_arrow_right.gif', ''); } else { echo '<a href="' . zen_href_link(FILENAME_LAYOUT_CONTROLLER, 'page=' . $_GET['page'] . '&cID=' . $column_controller->fields['layout_id']) . '">' . zen_image(DIR_WS_IMAGES . 'icon_info.gif', IMAGE_ICON_INFO) . '</a>'; } ?>&nbsp;</td>
  233.               </tr>
  234.  
  235. <?php
  236.     $last_box_column = $column_controller->fields['layout_box_location'];
  237.     $column_controller->MoveNext();
  238.     if (($column_controller->fields['layout_box_location'] != $last_box_column) and !$column_controller->EOF) {
  239. ?>
  240.               <tr valign="top">
  241.                 <td colspan="7" height="20" align="center" valign="middle"><?php echo zen_draw_separator('pixel_black.gif', '90%', '3'); ?></td>
  242.               </tr>
  243. <?php
  244.     }
  245.   }
  246. ?>
  247.  
  248.               <tr valign="top">
  249.                 <td valign="top"><?php echo zen_draw_separator('pixel_trans.gif', '75%', '10'); ?></td>
  250.               </tr>
  251.  
  252.             </table></td>
  253. <?php
  254.   $heading = array();
  255.   $contents = array();
  256.  
  257.     switch ($bInfo->layout_box_status) {
  258.       case '0': $layout_box_status_status_on = false; $layout_box_status_status_off = true; break;
  259.       case '1':
  260.       default: $layout_box_status_status_on = true; $layout_box_status_status_off = false;
  261.     }
  262.     switch ($bInfo->layout_box_status_single) {
  263.       case '0': $layout_box_status_single_on = false; $layout_box_status_single_off = true; break;
  264.       case '1':
  265.       default: $layout_box_status_single_on = true; $layout_box_status_single_off = false;
  266.     }
  267.  
  268.   switch ($_GET['action']) {
  269.     case 'new':
  270.       $heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_NEW_BOX . '</b>');
  271.  
  272.       $contents = array('form' => zen_draw_form('column_controller', FILENAME_LAYOUT_CONTROLLER, 'page=' . $_GET['page'] . '&action=insert'));
  273.       $contents[] = array('text' => TEXT_INFO_INSERT_INTRO);
  274.       $contents[] = array('text' => '<br />' . TEXT_INFO_LAYOUT_BOX_NAME . '<br />' . zen_draw_input_field('layout_box_name'));
  275.       $contents[] = array('text' => '<br />' . TEXT_INFO_LAYOUT_BOX_STATUS . '<br />' . zen_draw_input_field('layout_box_status'));
  276.       $contents[] = array('text' => '<br />' . TEXT_INFO_LAYOUT_BOX_LOCATION . '<br />' . zen_draw_input_field('layout_box_location'));
  277.       $contents[] = array('text' => '<br />' . TEXT_INFO_LAYOUT_BOX_SORT_ORDER . '<br />' . zen_draw_input_field('layout_box_sort_order'));
  278.       $contents[] = array('text' => '<br />' . TEXT_INFO_LAYOUT_BOX_SORT_ORDER_SINGLE . '<br />' . zen_draw_input_field('layout_box_sort_order_single'));
  279.       $contents[] = array('text' => '<br />' . TEXT_INFO_LAYOUT_BOX_STATUS_SINGLE . '<br />' . zen_draw_input_field('layout_box_status_single'));
  280.  
  281.       $contents[] = array('align' => 'center', 'text' => '<br />' . zen_image_submit('button_insert.gif', IMAGE_INSERT) . '&nbsp;<a href="' . zen_href_link(FILENAME_LAYOUT_CONTROLLER, 'page=' . $_GET['page']) . '">' . zen_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');
  282.       break;
  283.     case 'edit':
  284.       switch ($bInfo->layout_box_status) {
  285.         case '0': $in_status = false; $out_status = true; break;
  286.         case '1': $in_status = true; $out_status = false; break;
  287.         default: $in_status = true; $out_status = false;
  288.       }
  289.       switch ($bInfo->layout_box_location) {
  290.         case '0': $left_status = true; $right_status = false; break;
  291.         case '1': $left_status = false; $right_status = true; break;
  292.         default: $left_status = false; $right_status = true;
  293.       }
  294.       switch ($bInfo->layout_box_status_single) {
  295.         case '0': $in_status_single = false; $out_status_single = true; break;
  296.         case '1': $in_status_single = true; $out_status_single = false; break;
  297.         default: $in_status_single = true; $out_status_single = false;
  298.       }
  299.  
  300.       $heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_EDIT_BOX . '</b>');
  301.  
  302.       $contents = array('form' => zen_draw_form('column_controller', FILENAME_LAYOUT_CONTROLLER, 'page=' . $_GET['page'] . '&cID=' . $bInfo->layout_id . '&action=save' . '&layout_box_name=' . $bInfo->layout_box_name));
  303.       $contents[] = array('text' => TEXT_INFO_EDIT_INTRO);
  304.       $contents[] = array('text' => TEXT_INFO_LAYOUT_BOX_NAME . ' ' . $bInfo->layout_box_name);
  305.       $contents[] = array('text' => '<br />' . TEXT_INFO_LAYOUT_BOX_STATUS . '<br />' . zen_draw_radio_field('layout_box_status', '1', $in_status) . TEXT_ON . zen_draw_radio_field('layout_box_status', '0', $out_status) . TEXT_OFF);
  306.       $contents[] = array('text' => '<br />' . TEXT_INFO_LAYOUT_BOX_LOCATION . '<br />' . zen_draw_radio_field('layout_box_location', '0', $left_status) . TEXT_LEFT . zen_draw_radio_field('layout_box_location', '1', $right_status) . TEXT_RIGHT);
  307.       $contents[] = array('text' => '<br />' . TEXT_INFO_LAYOUT_BOX_SORT_ORDER . '<br />' . zen_draw_input_field('layout_box_sort_order', $bInfo->layout_box_sort_order,'size="4"'));
  308.       $contents[] = array('text' => '<br />' . TEXT_INFO_LAYOUT_BOX_SORT_ORDER_SINGLE . '<br />' . zen_draw_input_field('layout_box_sort_order_single', $bInfo->layout_box_sort_order_single,'size="4"'));
  309.       $contents[] = array('text' => '<br />' . TEXT_INFO_LAYOUT_BOX_STATUS_SINGLE . '<br />' . zen_draw_radio_field('layout_box_status_single', '1', $in_status_single) . TEXT_ON . zen_draw_radio_field('layout_box_status_single', '0', $out_status_single) . TEXT_OFF);
  310.       $contents[] = array('align' => 'center', 'text' => '<br />' . zen_image_submit('button_update.gif', IMAGE_UPDATE) . '&nbsp;<a href="' . zen_href_link(FILENAME_LAYOUT_CONTROLLER, 'page=' . $_GET['page'] . '&cID=' . $bInfo->layout_id . '&layout_box_name=' . $bInfo->layout_box_name) . '">' . zen_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');
  311.       break;
  312.     case 'delete':
  313.       $heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_DELETE_BOX . '</b>');
  314.  
  315.       $contents = array('form' => zen_draw_form('column_controller', FILENAME_LAYOUT_CONTROLLER, 'page=' . $_GET['page'] . '&action=deleteconfirm' . '&layout_box_name=' . $bInfo->layout_box_name) . zen_draw_hidden_field('cID', $bInfo->layout_id));
  316.       $contents[] = array('text' => TEXT_INFO_DELETE_INTRO);
  317.       $contents[] = array('text' => '<br /><b>' . $bInfo->layout_box_name . '</b>');
  318.       $contents[] = array('align' => 'center', 'text' => '<br />' . zen_image_submit('button_delete.gif', IMAGE_UPDATE) . '&nbsp;<a href="' . zen_href_link(FILENAME_LAYOUT_CONTROLLER, 'page=' . $_GET['page'] . '&cID=' . $bInfo->layout_id) . '">' . zen_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');
  319.       break;
  320.     default:
  321.       if (is_object($bInfo)) {
  322.         $heading[] = array('text' => '<strong>' . TEXT_INFO_LAYOUT_BOX . $bInfo->layout_box_name . '</strong>');
  323.         $contents[] = array('align' => 'left', 'text' => '<a href="' . zen_href_link(FILENAME_LAYOUT_CONTROLLER, 'page=' . $_GET['page'] . '&cID=' . $bInfo->layout_id . '&action=edit') . '">' . zen_image_button('button_edit.gif', IMAGE_EDIT) . '</a>');
  324.         $contents[] = array('text' => '<strong>' . TEXT_INFO_BOX_DETAILS . '</strong>');
  325.         $contents[] = array('text' => TEXT_INFO_LAYOUT_BOX_NAME . ' ' . $bInfo->layout_box_name);
  326.         $contents[] = array('text' => TEXT_INFO_LAYOUT_BOX_STATUS . ' ' .  ($bInfo->layout_box_status=='1' ? TEXT_ON : TEXT_OFF) );
  327.         $contents[] = array('text' => TEXT_INFO_LAYOUT_BOX_LOCATION . ' ' . ($bInfo->layout_box_location=='0' ? TEXT_LEFT : TEXT_RIGHT) );
  328.         $contents[] = array('text' => TEXT_INFO_LAYOUT_BOX_SORT_ORDER . ' ' . $bInfo->layout_box_sort_order);
  329.         $contents[] = array('text' => TEXT_INFO_LAYOUT_BOX_SORT_ORDER_SINGLE . ' ' . $bInfo->layout_box_sort_order_single);
  330.         $contents[] = array('text' => TEXT_INFO_LAYOUT_BOX_STATUS_SINGLE . ' ' .  ($bInfo->layout_box_status_single=='1' ? TEXT_ON : TEXT_OFF) );
  331.  
  332.         if (!(file_exists($boxes_directory . $bInfo->layout_box_name) or file_exists($boxes_directory_template . $bInfo->layout_box_name))) {
  333.           $contents[] = array('align' => 'left', 'text' => '<br /><strong>' . TEXT_INFO_DELETE_MISSING_LAYOUT_BOX . '<br />' . $template_dir . '</strong>');
  334.           $contents[] = array('align' => 'left', 'text' => TEXT_INFO_DELETE_MISSING_LAYOUT_BOX_NOTE . '<strong>' . $bInfo->layout_box_name . '</strong>');
  335.           $contents[] = array('align' => 'left', 'text' => '<a href="' . zen_href_link(FILENAME_LAYOUT_CONTROLLER, 'page=' . $_GET['page'] . '&cID=' . $bInfo->layout_id . '&action=delete' . '&layout_box_name=' . $bInfo->layout_box_name) . '">' . zen_image_button('button_delete.gif', IMAGE_DELETE) . '</a>');
  336.         }
  337.       }
  338.       break;
  339.   }
  340.  
  341.   if ( (zen_not_null($heading)) && (zen_not_null($contents)) ) {
  342.     echo "\n" . '            <td width="25%" valign="top">' . "\n";
  343.  
  344.     $box = new box;
  345.     echo $box->infoBox($heading, $contents);
  346.  
  347.     echo '            </td>' . "\n";
  348.   }
  349. ?>
  350.   </tr>
  351.   <tr>
  352.     <td><table align="center">
  353.       <tr>
  354.         <td class="main" align="left">
  355.           <?php echo '<br />' . TEXT_INFO_RESET_TEMPLATE_SORT_ORDER . '<strong>' . $template_dir . '</strong>'; ?>
  356.         </td>
  357.       </tr>
  358.       <tr>
  359.         <td class="main" align="center">
  360.           <?php echo TEXT_INFO_RESET_TEMPLATE_SORT_ORDER_NOTE; ?>
  361.         </td>
  362.       </tr>
  363.       <tr>
  364.         <td class="main" align="center">
  365.           <?php echo '<br /><a href="' . zen_href_link(FILENAME_LAYOUT_CONTROLLER, 'page=' . $_GET['page'] . '&cID=' . $bInfo->layout_id . '&action=reset_defaults') . '">' . zen_image_button('button_reset.gif', IMAGE_RESET) . '</a>'; ?>
  366.         </td>
  367.       </tr>
  368.     </table></td>
  369.   </tr>
  370.   <tr valign="top">
  371.     <td valign="top"><?php echo zen_draw_separator('pixel_trans.gif', '1', '100'); ?></td>
  372.   </tr>
  373.  
  374. <!-- end of display -->
  375.  
  376.         </table></td>
  377.       </tr>
  378.     </table></td>
  379. <!-- body_text_eof //-->
  380.   </tr>
  381. </table>
  382. <!-- body_eof //-->
  383.  
  384. <!-- footer //-->
  385. <?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
  386. <!-- footer_eof //-->
  387. <br />
  388. </body>
  389. </html>
  390. <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>


cron