⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.php

📁 this the oscommerce 3.0 aplha 4
💻 PHP
字号:
<?php/*  $Id: main.php 1498 2007-03-29 14:04:50Z hpdl $  osCommerce, Open Source E-Commerce Solutions  http://www.oscommerce.com  Copyright (c) 2007 osCommerce  This program is free software; you can redistribute it and/or modify  it under the terms of the GNU General Public License v2 (1991)  as published by the Free Software Foundation.*/?><h1><?php echo osc_link_object(osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule()), $osC_Template->getPageTitle()); ?></h1><?php  if ( $osC_MessageStack->size($osC_Template->getModule()) > 0 ) {    echo $osC_MessageStack->output($osC_Template->getModule());  }?><p align="right"><?php echo '<input type="button" value="' . $osC_Language->get('button_insert') . '" onclick="document.location.href=\'' . osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule() . '&page=' . $_GET['page'] . '&action=save') . '\';" class="infoBoxButton" />'; ?></p><?php  $Qbanners = $osC_Database->query('select banners_id, banners_title, banners_group, status from :table_banners order by banners_title, banners_group');  $Qbanners->bindTable(':table_banners', TABLE_BANNERS);  $Qbanners->setBatchLimit($_GET['page'], MAX_DISPLAY_SEARCH_RESULTS);  $Qbanners->execute();?><table border="0" width="100%" cellspacing="0" cellpadding="2">  <tr>    <td><?php echo $Qbanners->getBatchTotalPages($osC_Language->get('batch_results_number_of_entries')); ?></td>    <td align="right"><?php echo $Qbanners->getBatchPageLinks('page', $osC_Template->getModule(), false); ?></td>  </tr></table><form name="batch" action="#" method="post"><table border="0" width="100%" cellspacing="0" cellpadding="2" class="dataTable">  <thead>    <tr>      <th><?php echo $osC_Language->get('table_heading_banners'); ?></th>      <th><?php echo $osC_Language->get('table_heading_group'); ?></th>      <th><?php echo $osC_Language->get('table_heading_statistics'); ?></th>      <th width="150"><?php echo $osC_Language->get('table_heading_action'); ?></th>      <th align="center" width="20"><?php echo osc_draw_checkbox_field('batchFlag', null, null, 'onclick="flagCheckboxes(this);"'); ?></th>    </tr>  </thead>  <tfoot>    <tr>      <th align="right" colspan="4"><?php echo '<input type="image" src="' . osc_icon_raw('trash.png') . '" title="' . $osC_Language->get('icon_trash') . '" onclick="document.batch.action=\'' . osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule() . '&page=' . $_GET['page'] . '&action=batchDelete') . '\';" />'; ?></th>      <th align="center" width="20"><?php echo osc_draw_checkbox_field('batchFlag', null, null, 'onclick="flagCheckboxes(this);"'); ?></th>    </tr>  </tfoot>  <tbody><?php  while ( $Qbanners->next() ) {    $Qstats = $osC_Database->query('select sum(banners_shown) as banners_shown, sum(banners_clicked) as banners_clicked from :table_banners_history where banners_id = :banners_id');    $Qstats->bindTable(':table_banners_history', TABLE_BANNERS_HISTORY);    $Qstats->bindInt(':banners_id', $Qbanners->valueInt('banners_id'));    $Qstats->execute();?>    <tr onmouseover="rowOverEffect(this);" onmouseout="rowOutEffect(this);" <?php echo (($Qbanners->valueInt('status') !== 1) ? 'class="deactivatedRow"' : '') ?>>      <td onclick="document.getElementById('batch<?php echo $Qbanners->valueInt('banners_id'); ?>').checked = !document.getElementById('batch<?php echo $Qbanners->valueInt('banners_id'); ?>').checked;"><?php echo $Qbanners->value('banners_title'); ?></td>      <td><?php echo $Qbanners->valueProtected('banners_group'); ?></td>      <td><?php echo $Qstats->valueInt('banners_shown') . ' / ' . $Qstats->valueInt('banners_clicked'); ?></td>      <td align="right"><?php    echo osc_link_object(osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule() . '&page=' . $_GET['page'] . '&bID=' . $Qbanners->valueInt('banners_id') . '&action=preview'), osc_icon('banner_preview.png')) . '&nbsp;' .         osc_link_object(osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule() . '&page=' . $_GET['page'] . '&bID=' . $Qbanners->valueInt('banners_id') . '&action=statistics'), osc_icon('statistics.png')) . '&nbsp;' .         osc_link_object(osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule() . '&page=' . $_GET['page'] . '&bID=' . $Qbanners->valueInt('banners_id') . '&action=save'), osc_icon('edit.png')) . '&nbsp;' .         osc_link_object(osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule() . '&page=' . $_GET['page'] . '&bID=' . $Qbanners->valueInt('banners_id') . '&action=delete'), osc_icon('trash.png'));?>      </td>      <td align="center"><?php echo osc_draw_checkbox_field('batch[]', $Qbanners->valueInt('banners_id'), null, 'id="batch' . $Qbanners->valueInt('banners_id') . '"'); ?></td>    </tr><?php  }?>  </tbody></table></form><table border="0" width="100%" cellspacing="0" cellpadding="2">  <tr>    <td style="opacity: 0.5; filter: alpha(opacity=50);"><?php echo '<b>' . $osC_Language->get('table_action_legend') . '</b> ' . osc_icon('banner_preview.png') . '&nbsp;' . $osC_Language->get('icon_banner_preview') . '&nbsp;&nbsp;' . osc_icon('statistics.png') . '&nbsp;' . $osC_Language->get('icon_statistics') . '&nbsp;&nbsp;' . osc_icon('edit.png') . '&nbsp;' . $osC_Language->get('icon_edit') . '&nbsp;&nbsp;' . osc_icon('trash.png') . '&nbsp;' . $osC_Language->get('icon_trash'); ?></td>    <td align="right"><?php echo $Qbanners->getBatchPagesPullDownMenu('page', $osC_Template->getModule()); ?></td>  </tr></table>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -