本文整理汇总了PHP中GWF_Website::displayPage方法的典型用法代码示例。如果您正苦于以下问题:PHP GWF_Website::displayPage方法的具体用法?PHP GWF_Website::displayPage怎么用?PHP GWF_Website::displayPage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GWF_Website
的用法示例。
在下文中一共展示了GWF_Website::displayPage方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: onDisplayPage
/**
* Display the page with layout
* If ajax is enabled it returns only the module content
* @param string|NULL $content replace page content
* @return string
*/
public function onDisplayPage($content = NULL)
{
if (true === self::getConfig('log_request') && class_exists('GWF_Log')) {
GWF_Log::logRequest();
}
# Display the page
if (true === isset($_GET['ajax'])) {
GWF_Website::plaintext();
return self::$page;
} else {
$page = $content === NULL ? self::$page : $content;
return GWF_Website::displayPage($page);
}
}
示例2: GWF3
<?php
require_once 'live_lfi.config.php';
require_once '/opt/php/gwf3/GWF3.php';
$gwf = new GWF3(getcwd());
GWF_Debug::enableErrorHandler();
$iso = Common::getGetString('lang', 'en');
$lang = (require_once $iso);
$page = sprintf('%s<br/>%s', $lang['welcome'], $lang['construction']);
echo GWF_Website::displayPage($page);