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


PHP CController::processOutput方法代碼示例

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


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

示例1: render

 /**
  * Render full HTML page. A controller/action that uses XPage to render page
  * can render its view in Yii's standard way or render a constructed page with a
  * main view and multiple sidebars of left and right of the main content.
  *
  * @param bool $return
  *
  * @return mixed|string
  */
 public function render($return = false)
 {
     $this->registerAssets();
     /**
      * re-implement the render() of CController but not firing events
      * for beforeRender and afterRender as they are not really useful
      */
     $this->renderColumn('left');
     $this->renderColumn('main');
     $this->renderColumn('right');
     $content = '';
     foreach ($this->views['main'] as $renderedInfo) {
         $content .= "\n" . $renderedInfo['content'];
     }
     $this->views['content'] = $content;
     if (($layoutFile = $this->controller->getLayoutFile($this->controller->layout)) !== false) {
         $output = $this->controller->renderFile($layoutFile, $this->views, true);
     } else {
         $leftContent = '';
         foreach ($this->views['left'] as $renderedInfo) {
             $leftContent = "\n" . $renderedInfo['content'];
         }
         $rightContent = '';
         foreach ($this->views['right'] as $renderedInfo) {
             $rightContent = "\n" . $renderedInfo['content'];
         }
         $output = $leftContent . "\n" . $content . "\n" . $rightContent;
     }
     $output = $this->controller->processOutput($output);
     if ($return) {
         return $output;
     } else {
         echo $output;
     }
 }
開發者ID:hung5s,項目名稱:yap,代碼行數:44,代碼來源:XPage.php

示例2: processOutput

 public function processOutput($output)
 {
     if (!Yii::app()->request->isAjaxRequest) {
         if (!preg_match("#{copyright}#", $output)) {
             die(Yii::t('app', 'NO_COPYRIGHT'));
         }
     }
     $licens = Yii::t('app', 'COPYRIGHT', array('{year}' => date('Y')));
     $output = str_replace("{copyright}", $css . $licens, $output);
     return parent::processOutput($output);
 }
開發者ID:buildshop,項目名稱:bs-common,代碼行數:11,代碼來源:Controller.php

示例3: processOutput

 /**
  * Действие обработки вывода:
  *
  * @param string $output - буфер для вывода
  *
  * @return string родительский вызов processOutput
  **/
 public function processOutput($output)
 {
     ContentType::setHeader($this->headerTypeId);
     return parent::processOutput($output);
 }
開發者ID:sherifflight,項目名稱:yupe,代碼行數:12,代碼來源:Controller.php

示例4: processOutput

 public function processOutput($output)
 {
     return $this->processDynamic(parent::processOutput($output));
 }
開發者ID:rosko,項目名稱:Tempo-CMS,代碼行數:4,代碼來源:Controller.php


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