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


PHP Presenter::sendResponse方法代碼示例

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


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

示例1: sendResponse

 public function sendResponse(IResponse $response)
 {
     if ($this->tidy->isEnabled() && $response instanceof TextResponse && $response->getSource() instanceof ITemplate) {
         $response = new TidyResponse($response, $this->tidy);
     }
     parent::sendResponse($response);
 }
開發者ID:mike227,項目名稱:n-sandbox,代碼行數:7,代碼來源:BasePresenter.php

示例2: sendResponse

 public function sendResponse(Nette\Application\IResponse $response)
 {
     if ($response instanceof Nette\Application\Responses\TextResponse && $response->source instanceof Nette\Templating\ITemplate) {
         echo Helpers::renderTemplate($response->source);
     } else {
         parent::sendResponse($response);
     }
 }
開發者ID:juzna,項目名稱:flowphp,代碼行數:8,代碼來源:BasePresenter.php

示例3: tryJsonResponse

 public static function tryJsonResponse(Presenter $presenter)
 {
     if (empty(self::$jsonResoponseItems)) {
         return;
     }
     $payload = array("type" => "JsonDependentSelectBoxResponse", "items" => array());
     foreach (self::$jsonResoponseItems as $item) {
         $payload["items"][$item->getHtmlId()] = array("selected" => $item->getValue(), "items" => $item->getItems());
     }
     $response = new JsonResponse($payload);
     $presenter->sendResponse($response);
 }
開發者ID:foowie,項目名稱:dependentselectbox,代碼行數:12,代碼來源:JsonDependentSelectBox.php

示例4: sendResponse

 public final function sendResponse(Application\IResponse $response)
 {
     if ($this->innerCall) {
         parent::sendResponse($response);
     }
     $this->amfManager->setResponse($response);
     if ($this->amfManager->hasMoreMessages()) {
         $request = $this->amfManager->createApplicationRequest();
         parent::sendResponse(new Application\Responses\ForwardResponse($request));
     } else {
         parent::sendResponse(new FinalResponse($this->amfManager));
     }
 }
開發者ID:goodshape,項目名稱:nette-amf,代碼行數:13,代碼來源:AmfPresenter.php

示例5: sendResponse

 public function sendResponse(\Nette\Application\IResponse $response)
 {
     if ($response instanceof \Nette\Application\Responses\JsonResponse) {
         $response->send($this->getHttpRequest(), $this->getHttpResponse());
     } else {
         parent::sendResponse($response);
     }
 }
開發者ID:cujan,項目名稱:vcelyweb,代碼行數:8,代碼來源:Helper.inc.php


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