table_based.php

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

PHP
192
字号
<?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_Template_table_based {    var $_id,        $_title = 'osCommerce Table Based Template',        $_code = 'table_based',        $_author_name = 'osCommerce',        $_author_www = 'http://www.oscommerce.com',        $_markup_version = 'XHTML 1.0 Transitional',        $_css_based = '0', /* 0=No; 1=Yes */        $_medium = 'Screen',        $_groups = array('boxes' => array('left', 'right'),                         'content' => array('before', 'after')),        $_keys;    function getID() {      global $osC_Database;      if (isset($this->_id) === false) {        $Qtemplate = $osC_Database->query('select id from :table_templates where code = :code');        $Qtemplate->bindTable(':table_templates', TABLE_TEMPLATES);        $Qtemplate->bindvalue(':code', $this->_code);        $Qtemplate->execute();        $this->_id = $Qtemplate->valueInt('id');      }      return $this->_id;    }    function getTitle() {      return $this->_title;    }    function getCode() {      return $this->_code;    }    function getAuthorName() {      return $this->_author_name;    }    function getAuthorAddress() {      return $this->_author_www;    }    function getMarkup() {      return $this->_markup_version;    }    function isCSSBased() {      return ($this->_css_based == '1');    }    function getMedium() {      return $this->_medium;    }    function getGroups($group) {      return $this->_groups[$group];    }    function install() {      global $osC_Database;      $Qinstall = $osC_Database->query('insert into :table_templates (title, code, author_name, author_www, markup_version, css_based, medium) values (:title, :code, :author_name, :author_www, :markup_version, :css_based, :medium)');      $Qinstall->bindTable(':table_templates', TABLE_TEMPLATES);      $Qinstall->bindValue(':title', $this->_title);      $Qinstall->bindValue(':code', $this->_code);      $Qinstall->bindValue(':author_name', $this->_author_name);      $Qinstall->bindValue(':author_www', $this->_author_www);      $Qinstall->bindValue(':markup_version', $this->_markup_version);      $Qinstall->bindValue(':css_based', $this->_css_based);      $Qinstall->bindValue(':medium', $this->_medium);      $Qinstall->execute();      $id = $osC_Database->nextID();      $data = array('categories' => array('*', 'left', '100'),                    'manufacturers' => array('*', 'left', '200'),                    'whats_new' => array('*', 'left', '300'),                    'search' => array('*', 'left', '400'),                    'information' => array('*', 'left', '500'),                    'shopping_cart' => array('*', 'right', '100'),                    'manufacturer_info' => array('products/info', 'right', '200'),                    'order_history' => array('*', 'right', '300'),                    'best_sellers' => array('*', 'right', '400'),                    'product_notifications' => array('products/info', 'right', '500'),                    'tell_a_friend' => array('products/info', 'right', '600'),                    'specials' => array('*', 'right', '700'),                    'reviews' => array('*', 'right', '800'),                    'languages' => array('*', 'right', '900'),                    'currencies' => array('*', 'right', '1000'),                    'new_products' => array('index/category_listing', 'after', 400),                    'new_products' => array('index/index', 'after', 400),                    'upcoming_products' => array('index/index', 'after', 450),                    'recently_visited' => array('*', 'after', 500),                    'also_purchased_products' => array('products/info', 'after', 100));      $Qboxes = $osC_Database->query('select id, code from :table_templates_boxes');      $Qboxes->bindTable(':table_templates_boxes', TABLE_TEMPLATES_BOXES);      $Qboxes->execute();      while ($Qboxes->next()) {        if (isset($data[$Qboxes->value('code')])) {          $Qrelation = $osC_Database->query('insert into :table_templates_boxes_to_pages (templates_boxes_id, templates_id, content_page, boxes_group, sort_order, page_specific) values (:templates_boxes_id, :templates_id, :content_page, :boxes_group, :sort_order, :page_specific)');          $Qrelation->bindTable(':table_templates_boxes_to_pages', TABLE_TEMPLATES_BOXES_TO_PAGES);          $Qrelation->bindInt(':templates_boxes_id', $Qboxes->valueInt('id'));          $Qrelation->bindInt(':templates_id', $id);          $Qrelation->bindValue(':content_page', $data[$Qboxes->value('code')][0]);          $Qrelation->bindValue(':boxes_group', $data[$Qboxes->value('code')][1]);          $Qrelation->bindInt(':sort_order', $data[$Qboxes->value('code')][2]);          $Qrelation->bindInt(':page_specific', 0);          $Qrelation->execute();        }      }    }    function remove() {      global $osC_Database;      $Qdel = $osC_Database->query('delete from :table_templates_boxes_to_pages where templates_id = :templates_id');      $Qdel->bindTable(':table_templates_boxes_to_pages', TABLE_TEMPLATES_BOXES_TO_PAGES);      $Qdel->bindValue(':templates_id', $this->getID());      $Qdel->execute();      $Qdel = $osC_Database->query('delete from :table_templates where id = :id');      $Qdel->bindTable(':table_templates', TABLE_TEMPLATES);      $Qdel->bindValue(':id', $this->getID());      $Qdel->execute();      if ($this->hasKeys()) {        $Qdel = $osC_Database->query('delete from :table_configuration where configuration_key in (":configuration_key")');        $Qdel->bindTable(':table_configuration', TABLE_CONFIGURATION);        $Qdel->bindRaw(':configuration_key', implode('", "', $this->getKeys()));        $Qdel->execute();      }    }    function getKeys() {      if (!isset($this->_keys)) {        $this->_keys = array();      }      return $this->_keys;    }    function hasKeys() {      static $has_keys;      if (isset($has_keys) === false) {        $has_keys = (sizeof($this->getKeys()) > 0) ? true : false;      }      return $has_keys;    }    function isInstalled() {      global $osC_Database;      static $is_installed;      if (isset($is_installed) === false) {        $Qcheck = $osC_Database->query('select id from :table_templates where code = :code');        $Qcheck->bindTable(':table_templates', TABLE_TEMPLATES);        $Qcheck->bindValue(':code', $this->_code);        $Qcheck->execute();        $is_installed = ($Qcheck->numberOfRows()) ? true : false;      }      return $is_installed;    }    function isActive() {      return true;    }  }?>

⌨️ 快捷键说明

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