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