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

📄 downloads.php

📁 this the oscommerce 3.0 aplha 4
💻 PHP
字号:
<?php/*  $Id: downloads.php 1524 2007-03-30 16:53:31Z hpdl $  osCommerce, Open Source E-Commerce Solutions  http://www.oscommerce.com  Copyright (c) 2006 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 (!strstr($_SERVER['SCRIPT_FILENAME'], FILENAME_ACCOUNT_HISTORY_INFO)) {// Get last order id for checkout_success    $Qorder = $osC_Database->query('select orders_id from :table_orders where customers_id = :customers_id order by orders_id desc limit 1');    $Qorder->bindTable(':table_orders', TABLE_ORDERS);    $Qorder->bindInt(':customers_id', $osC_Customer->getID());    $Qorder->execute();    $last_order = $Qorders->valueInt('orders_id');  } else {    $last_order = (int)$_GET['order_id'];  }// Now get all downloadable products in that order  $Qdownloads = $osC_Database->query('select date_format(o.date_purchased, "%Y-%m-%d") as date_purchased_day, opd.download_maxdays, op.products_name, opd.orders_products_download_id, opd.orders_products_filename, opd.download_count, opd.download_maxdays from :table_orders o, :table_orders_products op, :table_orders_products_downloads opd where o.customers_id = :customers_id and o.orders_id = :orders_id and o.orders_id = op.orders_id and op.orders_products_id = opd.orders_products_id and opd.orders_products_filename != ""');  $Qdownloads->bindTable(':table_orders', TABLE_ORDERS);  $Qdownloads->bindTable(':table_orders_products', TABLE_ORDERS_PRODUCTS);  $Qdownloads->bindTable(':table_orders_products_downloads', TABLE_ORDERS_PRODUCTS_DOWNLOADS);  $Qdownloads->bindInt(':customers_id', $osC_Customer->getID());  $Qdownloads->bindInt(':orders_id', $last_order);  $Qdownloads->execute();  if ($Qdownloads->numberOfRows() > 0) {?><!-- downloads //-->      <tr>        <td width="10">&nbsp;</td>      </tr>      <tr>        <td><b><?php echo $osC_Language->get('download_heading'); ?></b></td>      </tr>      <tr>        <td width="10">&nbsp;</td>      </tr>      <tr>        <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"><!-- list of products --><?php    while ($Qdownloads->next()) {// MySQL 3.22 does not have INTERVAL      list($dt_year, $dt_month, $dt_day) = explode('-', $Qdownloads->value('date_purchased_day'));      $download_timestamp = mktime(23, 59, 59, $dt_month, $dt_day + $Qdownloads->value('download_maxdays'), $dt_year);      $download_expiry = date('Y-m-d H:i:s', $download_timestamp);?>          <tr class="infoBoxContents"><!-- left box --><?php// The link will appear only if:// - Download remaining count is > 0, AND// - The file is present in the DOWNLOAD directory, AND EITHER// - No expiry date is enforced (maxdays == 0), OR// - The expiry date is not reached      if ( ($Qdownloads->valueInt('download_count') > 0) && (file_exists(DIR_FS_DOWNLOAD . $Qdownloads->value('orders_products_filename'))) && ( ($Qdownloads->value('download_maxdays') == 0) || ($download_timestamp > time())) ) {        echo '            <td>' . osc_link_object(osc_href_link(FILENAME_DOWNLOAD, 'order=' . $last_order . '&id=' . $Qdownloads->valueInt('orders_products_download_id')), $Qdownloads->value('products_name')) . '</td>' . "\n";      } else {        echo '            <td>' . $Qdownloads->value('products_name') . '</td>' . "\n";      }?><!-- right box --><?php      echo '            <td>' . sprintf($osC_Language->get('download_link_expires'), osC_DateTime::getLong($download_expiry)) . '</td>' . "\n" .           '            <td align="right">' . sprintf($osC_Language->get('download_counter_remaining'), $Qdownloads->valueInt('download_count')) . '</td>' . "\n" .           '          </tr>' . "\n";    }?>          </tr>        </table></td>      </tr><?php    if (!strstr($_SERVER['SCRIPT_FILENAME'], FILENAME_ACCOUNT_HISTORY_INFO)) {?>      <tr>        <td width="10">&nbsp;</td>      </tr>      <tr>        <td class="smalltext" colspan="4"><p><?php sprintf($osC_Language->get('download_footer'), osc_link_object(osc_href_link(FILENAME_ACCOUNT, null, 'SSL'), $osC_Language->get('my_account'))); ?></p></td>      </tr><?php    }?><!-- downloads_eof //--><?php  }?>

⌨️ 快捷键说明

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