当前位置: 首页>>代码示例>>PHP>>正文


PHP OSCOM::hasSitePage方法代码示例

本文整理汇总了PHP中OSC\OM\OSCOM::hasSitePage方法的典型用法代码示例。如果您正苦于以下问题:PHP OSCOM::hasSitePage方法的具体用法?PHP OSCOM::hasSitePage怎么用?PHP OSCOM::hasSitePage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在OSC\OM\OSCOM的用法示例。


在下文中一共展示了OSCOM::hasSitePage方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

<?php

/**
 * osCommerce Online Merchant
 *
 * @copyright (c) 2016 osCommerce; https://www.oscommerce.com
 * @license MIT; https://www.oscommerce.com/license/mit.txt
 */
use OSC\OM\HTML;
use OSC\OM\OSCOM;
require 'includes/application_top.php';
if (OSCOM::hasSitePage()) {
    if (OSCOM::isRPC() === false) {
        $page_file = OSCOM::getSitePageFile();
        if (empty($page_file) || !is_file($page_file)) {
            $page_file = OSCOM::getConfig('dir_root') . 'includes/error_documents/404.php';
        }
        if (OSCOM::useSiteTemplateWithPageFile()) {
            include $oscTemplate->getFile('template_top.php');
        }
        include $page_file;
        if (OSCOM::useSiteTemplateWithPageFile()) {
            include $oscTemplate->getFile('template_bottom.php');
        }
    }
    goto main_sub3;
}
// the following cPath references come from application_top.php
$category_depth = 'top';
if (isset($cPath) && tep_not_null($cPath)) {
    $Qcheck = $OSCOM_Db->prepare('select products_id from :table_products_to_categories where categories_id = :categories_id limit 1');
开发者ID:haraldpdl,项目名称:oscommerce2,代码行数:31,代码来源:index.php


注:本文中的OSC\OM\OSCOM::hasSitePage方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。