log.php
来自「this the oscommerce 3.0 aplha 4」· PHP 代码 · 共 82 行
PHP
82 行
<?php/* $Id: log.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.*/ if ( !isset($_GET['lpage']) || ( isset($_GET['lpage']) && !is_numeric($_GET['lpage']) ) ) { $_GET['lpage'] = 1; }?><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_back') . '" onclick="document.location.href=\'' . osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule() . '&page=' . $_GET['page']) . '\';" class="operationButton" />'; ?></p><?php $Qlog = $osC_Database->query('select email_address, date_sent from :table_newsletters_log where newsletters_id = :newsletters_id order by date_sent desc'); $Qlog->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); $Qlog->bindInt(':newsletters_id', $_GET['nID']); $Qlog->setBatchLimit($_GET['lpage'], MAX_DISPLAY_SEARCH_RESULTS); $Qlog->execute();?><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td><?php echo $Qlog->getBatchTotalPages($osC_Language->get('batch_results_number_of_entries')); ?></td> <td align="right"><?php echo $Qlog->getBatchPageLinks('lpage', $osC_Template->getModule() . '&page=' . $_GET['page'] . '&nID=' . $_GET['nID'], false); ?></td> </tr></table><table border="0" width="100%" cellspacing="0" cellpadding="2" class="dataTable"> <thead> <tr> <th><?php echo $osC_Language->get('table_heading_email_addresses'); ?></th> <th><?php echo $osC_Language->get('table_heading_sent'); ?></th> <th><?php echo $osC_Language->get('table_heading_date_sent'); ?></th> </tr> </thead> <tfoot> <tr> <th colspan="3"> </th> </tr> </tfoot> <tbody><?php while ( $Qlog->next() ) {?> <tr onmouseover="rowOverEffect(this);" onmouseout="rowOutEffect(this);"> <td><?php echo $Qlog->valueProtected('email_address'); ?></td> <td align="center"><?php echo osc_icon(!osc_empty($Qlog->value('date_sent')) ? 'checkbox_ticked.gif' : 'checkbox_crossed.gif', null, null); ?></td> <td align="right"><?php echo $Qlog->value('date_sent'); ?></td> </tr><?php }?> </tbody></table><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td align="right"><?php echo $Qlog->getBatchPagesPullDownMenu('lpage', $osC_Template->getModule() . '&page=' . $_GET['page'] . '&nID=' . $_GET['nID']); ?></td> </tr></table>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?