products_viewed.php

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

PHP
72
字号
<?php/*  $Id: products_viewed.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 ( !class_exists('osC_Statistics') ) {    include('includes/classes/statistics.php');  }  class osC_Statistics_Products_Viewed extends osC_Statistics {// Class constructor    function osC_Statistics_Products_Viewed() {      global $osC_Language;      $osC_Language->loadIniFile('modules/statistics/products_viewed.php');      $this->_setIcon();      $this->_setTitle();    }// Private methods    function _setIcon() {      $this->_icon = osc_icon('products.png');    }    function _setTitle() {      global $osC_Language;      $this->_title = $osC_Language->get('statistics_products_viewed_title');    }    function _setHeader() {      global $osC_Language;      $this->_header = array($osC_Language->get('statistics_products_viewed_table_heading_products'),                             $osC_Language->get('statistics_products_viewed_table_heading_language'),                             $osC_Language->get('statistics_products_viewed_table_heading_total'));    }    function _setData() {      global $osC_Database, $osC_Language;      $this->_data = array();      $this->_resultset = $osC_Database->query('select p.products_id, pd.products_name, pd.products_viewed, l.name, l.code from :table_products p, :table_products_description pd, :table_languages l where p.products_id = pd.products_id and l.languages_id = pd.language_id order by pd.products_viewed desc');      $this->_resultset->bindTable(':table_products', TABLE_PRODUCTS);      $this->_resultset->bindTable(':table_products_description', TABLE_PRODUCTS_DESCRIPTION);      $this->_resultset->bindTable(':table_languages', TABLE_LANGUAGES);      $this->_resultset->setBatchLimit($_GET['page'], MAX_DISPLAY_SEARCH_RESULTS);      $this->_resultset->execute();      while ( $this->_resultset->next() ) {        $this->_data[] = array(osc_link_object(osc_href_link_admin(FILENAME_DEFAULT, 'products&pID=' . $this->_resultset->valueInt('products_id') . '&action=preview'), $this->_icon . '&nbsp;' . $this->_resultset->value('products_name')),                               $osC_Language->showImage($this->_resultset->value('code')),                               $this->_resultset->valueInt('products_viewed'));      }    }  }?>

⌨️ 快捷键说明

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