관리-도구
편집 파일: banner_box.php
<?php /** * banner_box sidebox - used to display "square" banners in sideboxes * * @copyright Copyright 2003-2020 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0 * @version $Id: DrByte 2019 Sep 09 Modified in v1.5.7 $ */ // test if box should display $show_banner_box = true; if (SHOW_BANNERS_GROUP_SET7 == '') { $show_banner_box = false; } if ($show_banner_box == true) { $banner_box = array(); $banner_box[] = TEXT_BANNER_BOX; $banner_box_group= SHOW_BANNERS_GROUP_SET7; require($template->get_template_dir('tpl_banner_box.php',DIR_WS_TEMPLATE, $current_page_base,'sideboxes'). '/tpl_banner_box.php'); // if no active banner in the specified banner group then the box will not show // uses banners in the defined group $banner_box_group if ($content != '') { $title = BOX_HEADING_BANNER_BOX; $title_link = false; require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default); } }