notify_add.php

来自「this the oscommerce 3.0 aplha 4」· PHP 代码 · 共 78 行

PHP
78
字号
<?php/*  $Id: $  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.*/  class osC_Actions_notify_add {    function execute() {      global $osC_Database, $osC_Session, $osC_NavigationHistory, $osC_Customer;      if (!$osC_Customer->isLoggedOn()) {        $osC_NavigationHistory->setSnapshot();        osc_redirect(osc_href_link(FILENAME_ACCOUNT, 'login', 'SSL'));        return false;      }      $notifications = array();      if (isset($_GET['products']) && !empty($_GET['products'])) {        $products_array = explode(';', $_GET['products']);        foreach ($products_array as $product_id) {          if (is_numeric($product_id) && !in_array($product_id, $notifications)) {            $notifications[] = $product_id;          }        }      } else {        $id = false;        foreach ($_GET as $key => $value) {          if ( (ereg('^[0-9]+(#?([0-9]+:?[0-9]+)+(;?([0-9]+:?[0-9]+)+)*)*$', $key) || ereg('^[a-zA-Z0-9 -_]*$', $key)) && ($key != $osC_Session->getName()) ) {            $id = $key;          }          break;        }        if (($id !== false) && osC_Product::checkEntry($id)) {          $osC_Product = new osC_Product($id);          $notifications[] = $osC_Product->getID();        }      }      if (!empty($notifications)) {        foreach ($notifications as $product_id) {          $Qcheck = $osC_Database->query('select products_id from :table_products_notifications where customers_id = :customers_id and products_id = :products_id limit 1');          $Qcheck->bindTable(':table_products_notifications', TABLE_PRODUCTS_NOTIFICATIONS);          $Qcheck->bindInt(':customers_id', $osC_Customer->getID());          $Qcheck->bindInt(':products_id', $product_id);          $Qcheck->execute();          if ($Qcheck->numberOfRows() < 1) {            $Qn = $osC_Database->query('insert into :table_products_notifications (products_id, customers_id, date_added) values (:products_id, :customers_id, :date_added)');            $Qn->bindTable(':table_products_notifications', TABLE_PRODUCTS_NOTIFICATIONS);            $Qn->bindInt(':products_id', $product_id);            $Qn->bindInt(':customers_id', $osC_Customer->getID());            $Qn->bindRaw(':date_added', 'now()');            $Qn->execute();          }        }      }      osc_redirect(osc_href_link(basename($_SERVER['SCRIPT_FILENAME']), osc_get_all_get_params(array('action'))));    }  }?>

⌨️ 快捷键说明

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