Overview

Packages

  • None
  • PHPShopArray
  • PHPShopClass
    • Helper
  • PHPShopCore
  • PHPShopElements
  • PHPShopGUI
  • PHPShopInc
  • PHPShopObj
  • PHPShopParser
  • PHPShopTest

Classes

  • fase4_rdf
  • PHPShopAdminRule
  • PHPShopArray
  • PHPShopBannerElement
  • PHPShopBase
  • PHPShopBaseXml
  • PHPShopCatalogElement
  • PHPShopCategory
  • PHPShopCategoryArray
  • PHPShopCloudElement
  • PHPShopCore
  • PHPShopCoretest
  • PHPShopCssParser
  • PHPShopDate
  • PHPShopDebug
  • PHPShopDoc
  • PHPShopElements
  • PHPShopFile
  • PHPShopForma
  • PHPShopFrontInterface
  • PHPShopGbook
  • PHPShopGbookElement
  • PHPShopGUI
  • PHPShopIndex
  • PHPShopInterface
  • PHPShopLang
  • PHPShopLinks
  • PHPShopMail
  • PHPShopMailFile
  • PHPShopMap
  • PHPShopModules
  • PHPShopNav
  • PHPShopNews
  • PHPShopNewsElement
  • PHPShopObj
  • PHPShopOpros
  • PHPShopOprosElement
  • PHPShopOrm
  • PHPShopPage
  • PHPShopPageCategory
  • PHPShopPageCategoryArray
  • PHPShopPages
  • PHPShopParser
  • PHPShopPhoto
  • PHPShopPhotoCategory
  • PHPShopPhotoCategoryArray
  • PHPShopPhotoElement
  • PHPShopReadCsv
  • PHPShopReadCsvNative
  • PHPShopReadCsvPro
  • PHPShopRestore
  • PHPShopRssParser
  • PHPShopSearch
  • PHPShopSecurity
  • PHPShopSkinElement
  • PHPShopSkinmarket
  • PHPShopSliderElement
  • PHPShopString
  • PHPShopSystem
  • PHPShopText
  • PHPShopTextElement
  • PHPShopUpdate
  • XMLparser

Functions

  • __
  • allowedFunctions
  • array2iconv
  • CheckCanGzip
  • debug
  • evalstr
  • GzDocOut
  • Open
  • output_handler
  • parseDatabase
  • Parser
  • ParseTemplate
  • ParseTemplateReturn
  • PHPShopAutoLoadClass
  • phpshopparserevalstr
  • preExtractCallBack
  • readDatabase
  • stripslashes_deep
  • SysValueReturn
  • timer
  • tmpGetFile
  • utf8_win1251
  • writeLangFile
  • xml2array
  • Overview
  • Package
  • Class
  1:   2:   3:   4:   5:   6:   7:   8:   9:  10:  11:  12:  13:  14:  15:  16:  17:  18:  19:  20:  21:  22:  23:  24:  25:  26:  27:  28:  29:  30:  31:  32:  33:  34:  35:  36:  37:  38:  39:  40:  41:  42:  43:  44:  45:  46:  47:  48:  49:  50:  51:  52:  53:  54:  55:  56:  57:  58:  59:  60:  61:  62:  63:  64:  65:  66:  67:  68:  69:  70:  71:  72:  73:  74:  75:  76:  77:  78:  79:  80:  81:  82:  83:  84:  85:  86:  87:  88:  89:  90:  91:  92:  93:  94:  95:  96:  97:  98:  99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 
<?php

/**

 * @author PHPShop Software
 * @version 1.1
 * @package PHPShopCore
 */
class PHPShopPage extends PHPShopCore {

    /**

     * @var bool 
     */
    var $content_in_paginator = false;
    

    /**

     */
    function __construct() {

        //
        $this->objBase = $GLOBALS['SysValue']['base']['table_name11'];

        //
        $this->debug = false;
        
        //
        $this->action = array("nav" => "CID");
        $this->empty_index_action=true;
        parent::__construct();
    }

    /**

     * @return string
     */
    function index() {

        //
        $link = PHPShopSecurity::TotalClean($this->PHPShopNav->getName(), 2);
        //
        //$link = PHPShopSecurity::TotalClean($this->PHPShopNav->getName('|'), 2);

        //
        $row = parent::getFullInfoItem(array('*'), array('link' => "='$link'", 'enabled' => "!='0'"));

        //
        if ($row['category'] == 2000)
            return $this->setError404();
        elseif (empty($row['id']))
            return $this->setError404();

        //
        $this->set('pageContent', Parser($row['content']));
        $this->set('pageTitle', $row['name']);

        //
        if (empty($row['title']))
            $title = $row['name'];
        else
            $title = $row['title'];

        $this->title = $title . " - " . $this->PHPShopSystem->getValue("name");
        $this->description = $row['description'];
        $this->keywords = $row['keywords'];
        $this->lastmodified = $row['date'];

        //
        $this->navigation($row['category'], $row['name']);

        //
        $this->setHook(__CLASS__, __FUNCTION__, $row);

        //
        $this->parseTemplate($this->getValue('templates.page_page_list'));
    }

    /**

     */
    function CID() {

        //
        $this->category = PHPShopSecurity::TotalClean($this->PHPShopNav->getId(), 1);
        $this->PHPShopCategory = new PHPShopCategory($this->category);
        $this->category_name = $this->PHPShopCategory->getName();

        $PHPShopOrm = new PHPShopOrm($this->getValue('base.table_name'));
        $PHPShopOrm->debug = $this->debug;
        $row = $PHPShopOrm->select(array('id,name'), array('parent_to' => "=" . $this->category), false, array('limit' => 1));

        //
        if (empty($row['id'])) {

            $this->ListPage();
        }
        //
        else {

            $this->ListCategory();
        }
    }

    /**

     * @return string
     */
    function ListPage() {
        $dis = null;
        
        // 404
        if(empty($this->category_name)){
            return $this->setError404();
        }

        //
        $this->page = $this->PHPShopNav->getPage();

        //
        $this->objPath = "/page/CID_" . $this->category . '_';

        $this->dataArray = parent::getListInfoItem(array('*'), array('category' => '=' . $this->category, 'enabled' => "='1'"), array('order' => 'num'));
        if (is_array($this->dataArray))
            foreach ($this->dataArray as $row) {
                $dis.=PHPShopText::li($row['name'], "/page/" . $row['link'] . ".html");
            }


        //$disp = PHPShopText::h1($this->category_name);
        $disp=null;    

        //
        if (!empty($this->LoadItems['CatalogPage'][$this->category]['content_enabled'])){
            if ($this->page < 2)
                $disp.=$this->PHPShopCategory->getContent();
            elseif($this->page > 1 and $this->content_in_paginator)
                $disp.=$this->PHPShopCategory->getContent();
        }
        
        

        //
        $disp.=PHPShopText::ul($dis);

        //
        $this->set('pageContent', Parser($disp));

        //
        $this->set('pageTitle', $this->category_name);

        //
        $this->setPaginator();

        //
        if ($this->page > 1) {
            $page_num = $this->page . ' - ';
        }
        else
            $page_num = null;

        if (!PHPShopParser::check($this->getValue('templates.page_page_list'), 'productPageNav'))
            $this->set('pageContent', $this->get('productPageNav'), true);

        // Title
        $this->title = $this->category_name . " - " . $page_num . $this->PHPShopSystem->getValue("name");

        //
        $this->navigation($row['category'], $this->category_name);

        //
        $this->setHook(__CLASS__, __FUNCTION__, $this->dataArray);

        //
        $this->parseTemplate($this->getValue('templates.page_page_list'));
    }

    /**

     */
    function ListCategory() {

        //
        $PHPShopOrm = new PHPShopOrm($this->getValue('base.table_name'));
        $PHPShopOrm->debug = $this->debug;
        $dataArray = $PHPShopOrm->select(array('name', 'id'), array('parent_to' => '=' . $this->category), array('order' => 'num'), array('limit' => 100));
        if (is_array($dataArray))
            foreach ($dataArray as $row) {
                $dis.=PHPShopText::li($row['name'], "/page/CID_" . $row['id'] . ".html");
            }

        $disp = PHPShopText::h1($this->category_name);

        //
        if (!empty($this->LoadItems['CatalogPage'][$this->category]['content_enabled']))
            $disp.=$this->PHPShopCategory->getContent();

        $disp.=PHPShopText::ul($dis);

        $this->set('pageContent', Parser($disp));
        $this->set('pageTitle', $this->category_name);

        //
        $this->title = $this->category_name . " - " . $this->PHPShopSystem->getValue("name");

        //
        $this->navigation($this->category, $this->category_name);

        //
        $this->setHook(__CLASS__, __FUNCTION__, $dataArray);

        //
        $this->parseTemplate($this->getValue('templates.page_page_list'));
    }

    /**

     */
    function meta() {
        parent::meta();

        //
        $this->setHook(__CLASS__, __FUNCTION__, false);
    }

}

?>
API documentation generated by ApiGen