product_notifications.php

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

PHP
62
字号
<?php/*  $Id: product_notifications.php 1498 2007-03-29 14:04:50Z 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.*/  class osC_Boxes_product_notifications extends osC_Modules {    var $_title,        $_code = 'product_notifications',        $_author_name = 'osCommerce',        $_author_www = 'http://www.oscommerce.com',        $_group = 'boxes';    function osC_Boxes_product_notifications() {      global $osC_Language;      $this->_title = $osC_Language->get('box_product_notifications_heading');    }    function initialize() {      global $osC_Database, $osC_Language, $osC_Product, $osC_Customer;      $this->_title_link = osc_href_link(FILENAME_ACCOUNT, 'notifications', 'SSL');      if (isset($osC_Product) && is_a($osC_Product, 'osC_Product')) {        if ($osC_Customer->isLoggedOn()) {          $Qcheck = $osC_Database->query('select global_product_notifications from :table_customers where customers_id = :customers_id');          $Qcheck->bindTable(':table_customers', TABLE_CUSTOMERS);          $Qcheck->bindInt(':customers_id', $osC_Customer->getID());          $Qcheck->execute();          if ($Qcheck->valueInt('global_product_notifications') === 0) {            $Qcheck = $osC_Database->query('select products_id from :table_products_notifications where products_id = :products_id and customers_id = :customers_id limit 1');            $Qcheck->bindTable(':table_products_notifications', TABLE_PRODUCTS_NOTIFICATIONS);            $Qcheck->bindInt(':products_id', $osC_Product->getID());            $Qcheck->bindInt(':customers_id', $osC_Customer->getID());            $Qcheck->execute();            if ($Qcheck->numberOfRows() > 0) {              $this->_content = '<div style="float: left; width: 55px;">' . osc_link_object(osc_href_link(basename($_SERVER['SCRIPT_FILENAME']), osc_get_all_get_params(array('action')) . '&action=notify_remove', 'AUTO'), osc_image(DIR_WS_IMAGES . 'box_products_notifications_remove.gif', sprintf($osC_Language->get('box_product_notifications_remove'), $osC_Product->getTitle()))) . '</div>' .                                osc_link_object(osc_href_link(basename($_SERVER['SCRIPT_FILENAME']), osc_get_all_get_params(array('action')) . '&action=notify_remove', 'AUTO'), sprintf($osC_Language->get('box_product_notifications_remove'), $osC_Product->getTitle()));            } else {              $this->_content = '<div style="float: left; width: 55px;">' . osc_link_object(osc_href_link(basename($_SERVER['SCRIPT_FILENAME']), osc_get_all_get_params(array('action')) . '&action=notify_add', 'AUTO'), osc_image(DIR_WS_IMAGES . 'box_products_notifications.gif', sprintf($osC_Language->get('box_product_notifications_add'), $osC_Product->getTitle()))) . '</div>' .                                osc_link_object(osc_href_link(basename($_SERVER['SCRIPT_FILENAME']), osc_get_all_get_params(array('action')) . '&action=notify_add', 'AUTO'), sprintf($osC_Language->get('box_product_notifications_add'), $osC_Product->getTitle()));            }            $this->_content .= '<div style="clear: both;"></div>';          }        }      }    }  }?>

⌨️ 快捷键说明

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