當前位置: 首頁>>代碼示例>>PHP>>正文


PHP GWF_Website::getDefaultOutput方法代碼示例

本文整理匯總了PHP中GWF_Website::getDefaultOutput方法的典型用法代碼示例。如果您正苦於以下問題:PHP GWF_Website::getDefaultOutput方法的具體用法?PHP GWF_Website::getDefaultOutput怎麽用?PHP GWF_Website::getDefaultOutput使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在GWF_Website的用法示例。


在下文中一共展示了GWF_Website::getDefaultOutput方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: onLoadModule

 /**
  * Load the $_GET['mo'] or GWF_DEFAULT_MODULE and execute it
  * @return GWF3 
  */
 public function onLoadModule()
 {
     # Load the module
     $db = gdo_db();
     if (false === (self::$MODULE = GWF_Module::loadModuleDB($_GET['mo']))) {
         if (false === (self::$MODULE = GWF_Module::loadModuleDB(GWF_DEFAULT_MODULE))) {
             self::logDie('No module found.');
         }
         $_GET['me'] = GWF_DEFAULT_METHOD;
     }
     # Module is enabled?
     if (true === self::$MODULE->isEnabled()) {
         # Execute the method
         self::$MODULE->onInclude();
         self::$MODULE->onLoadLanguage();
         $db = gdo_db();
         $db->transactionStart();
         self::$page = self::$MODULE->execute($_GET['me']);
         if (true === isset($_GET['ajax'])) {
             self::$page = GWF_Website::getDefaultOutput() . self::$page;
         }
     } else {
         # TODO: HTTP Response code (by GWF_Exception(?))
         self::$page = GWF_HTML::err('ERR_MODULE_DISABLED', array(self::$MODULE->display('module_name')));
     }
     return $this;
 }
開發者ID:sinfocol,項目名稱:gwf3,代碼行數:31,代碼來源:gwf3.class.php

示例2: define

define('GWF_PAGE_TITLE', 'Time to Reset II');
require_once 'challenge/html_head.php';
# output start of website
require_once GWF_CORE_PATH . 'module/WeChall/solutionbox.php';
# Get the challenge
if (false === ($chall = WC_Challenge::getByTitle(GWF_PAGE_TITLE))) {
    $chall = WC_Challenge::dummyChallenge(GWF_PAGE_TITLE, 7, 'challenge/time_to_reset2/index.php', false);
}
require_once 'challenge/time_to_reset2/TTR2_Form.include';
require_once 'challenge/time_to_reset2/TTR2_Tokens.include';
# And display the header
$chall->showHeader();
if (isset($_POST['solve'])) {
    ttr2_submit($chall);
}
echo GWF_Website::getDefaultOutput();
$noother = sprintf('<a href="/profile/noother">noother</a>');
echo GWF_Box::box($chall->lang('info', array($noother, 'reset.php', 'index.php?show=source', 'index.php?highlight=christmas')), $chall->lang('title'));
if (Common::getGetString('highlight') === 'christmas') {
    $source = '[PHP title=reset.php]' . trim(file_get_contents('challenge/time_to_reset2/reset.php')) . '[/PHP]';
    echo GWF_Box::box(GWF_BBCode::decode($source));
}
formSolutionbox($chall);
# Print Challenge Footer
echo $chall->copyrightFooter();
# Print end of website
require_once 'challenge/html_foot.php';
function ttr2_submit(WC_Challenge $chall)
{
    if ('' === ($answer = Common::getPostString('answer', ''))) {
        return;
開發者ID:sinfocol,項目名稱:gwf3,代碼行數:31,代碼來源:index.php


注:本文中的GWF_Website::getDefaultOutput方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。