本文整理匯總了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;
}
示例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();
}
示例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;
}
示例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;
}