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


PHP Zend_Tool_Framework_Registry_Interface::getRequest方法代碼示例

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


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

示例1: setRegistry

 /**
  * setRegistry()
  *
  * @param Zend_Tool_Framework_Registry_Interface $registry
  * @return Zend_Tool_Framework_Client_Console_ArgumentParser
  */
 public function setRegistry(Zend_Tool_Framework_Registry_Interface $registry)
 {
     // get the client registry
     $this->_registry = $registry;
     // set manifest repository, request, response for easy access
     $this->_manifestRepository = $this->_registry->getManifestRepository();
     $this->_request = $this->_registry->getRequest();
     $this->_response = $this->_registry->getResponse();
     return $this;
 }
開發者ID:robeendey,項目名稱:ce,代碼行數:16,代碼來源:ArgumentParser.php

示例2: _bootstrap

 /**
  * undocumented function
  *
  * @return void
  * @author Alistair Stead
  **/
 protected function _bootstrap()
 {
     //load Magento
     $mageFilename = 'app/Mage.php';
     $this->_isInstalled($mageFilename);
     require_once $mageFilename;
     Mage::setIsDeveloperMode(true);
     Mage::app();
     // get request/response object
     $this->_request = $this->_registry->getRequest();
     $this->_response = $this->_registry->getResponse();
 }
開發者ID:CEMD-CN,項目名稱:MageTool,代碼行數:18,代碼來源:Abstract.php

示例3: respondWithErrorMessage

 /**
  * respondWithErrorMessage()
  *
  * @param string $errorMessage
  * @param Exception $exception
  */
 public function respondWithErrorMessage($errorMessage, Exception $exception = null)
 {
     // break apart the message into wrapped chunks
     $errorMessages = explode(PHP_EOL, wordwrap($errorMessage, 70, PHP_EOL, false));
     $text = 'An Error Has Occurred';
     $this->_response->appendContent($text, array('color' => array('hiWhite', 'bgRed'), 'aligncenter' => true));
     $this->_response->appendContent($errorMessage, array('indention' => 1, 'blockize' => 72, 'color' => array('white', 'bgRed')));
     if ($exception && $this->_registry->getRequest()->isDebug()) {
         $this->_response->appendContent($exception->getTraceAsString());
     }
     $this->_response->appendContent(null, array('separator' => true));
     return $this;
 }
開發者ID:yonetici,項目名稱:pimcore-coreshop-demo,代碼行數:19,代碼來源:HelpSystem.php

示例4: respondWithErrorMessage

 /**
  * respondWithErrorMessage()
  *
  * @param string $errorMessage
  * @param Exception $exception
  */
 public function respondWithErrorMessage($errorMessage, Exception $exception = null)
 {
     // break apart the message into wrapped chunks
     $errorMessages = explode(PHP_EOL, wordwrap($errorMessage, 70, PHP_EOL, false));
     $text = '                       An Error Has Occurred                            ';
     $this->_response->appendContent($text, array('color' => array('hiWhite', 'bgRed')));
     foreach ($errorMessages as $errorMessage) {
         $errorMessage = sprintf('%-70s', $errorMessage);
         $this->_response->appendContent(' ' . $errorMessage . ' ', array('color' => array('white', 'bgRed')));
     }
     if ($exception && $this->_registry->getRequest()->isDebug()) {
         $this->_response->appendContent($exception->getTraceAsString());
     }
     $this->_response->appendContent(null, array('separator' => true));
     return $this;
 }
開發者ID:codercv,項目名稱:urbansurprisedev,代碼行數:22,代碼來源:HelpSystem.php


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