本文整理汇总了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;
}