本文整理匯總了PHP中Zend_Controller_Action_Helper_ViewRenderer::render方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Controller_Action_Helper_ViewRenderer::render方法的具體用法?PHP Zend_Controller_Action_Helper_ViewRenderer::render怎麽用?PHP Zend_Controller_Action_Helper_ViewRenderer::render使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Zend_Controller_Action_Helper_ViewRenderer
的用法示例。
在下文中一共展示了Zend_Controller_Action_Helper_ViewRenderer::render方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testCustomInflectorUsesViewRendererTargetWhenPassedInWithReferenceFlag
public function testCustomInflectorUsesViewRendererTargetWhenPassedInWithReferenceFlag()
{
$this->request->setModuleName('bar')
->setControllerName('index')
->setActionName('test');
$controller = new Bar_IndexController($this->request, $this->response, array());
$this->helper->view->addBasePath($this->basePath . '/_files/modules/bar/views');
require_once 'Zend/Filter/PregReplace.php';
require_once 'Zend/Filter/Word/UnderscoreToSeparator.php';
$inflector = new Zend_Filter_Inflector('test.phtml');
$inflector->addRules(array(
':module' => array('Word_CamelCaseToDash', 'stringToLower'),
':controller' => array('Word_CamelCaseToDash', new Zend_Filter_Word_UnderscoreToSeparator(DIRECTORY_SEPARATOR), 'StringToLower'),
':action' => array(
'Word_CamelCaseToDash',
new Zend_Filter_PregReplace('/[^a-z0-9]+/i', '-'),
'StringToLower'
),
));
$this->helper->setInflector($inflector, true);
$this->helper->render();
$body = $this->response->getBody();
$this->assertContains('Rendered index/test.phtml in bar module', $body);
}
示例2: testRenderToNamedSegment
public function testRenderToNamedSegment()
{
$this->request->setModuleName('bar')->setControllerName('index')->setActionName('test');
$controller = new Bar_IndexController($this->request, $this->response, array());
$this->helper->render(null, 'foo');
$body = $this->response->getBody('foo');
$this->assertContains('Rendered index/test.phtml in bar module', $body);
}
示例3: render
function render($action = null, $name = null, $noController = null)
{
if (isset($this->_actionController->block)) {
$this->renderBlock($this->_actionController->block);
} else {
parent::render($action, $name, $noController);
}
}
示例4: testCorrectViewHelperPathShouldBePropagatedWhenSubControllerInvokedInDefaultModule
public function testCorrectViewHelperPathShouldBePropagatedWhenSubControllerInvokedInDefaultModule()
{
require_once $this->basePath . '/_files/modules/default/controllers/Admin/HelperController.php';
$this->request->setControllerName('admin_helper')->setActionName('render');
$controller = new Admin_HelperController($this->request, $this->response, array());
$this->helper->render();
$body = $this->response->getBody();
$this->assertContains('SampleZfHelper invoked', $body, 'Received ' . $body);
}
示例5: render
/**
* Render, and add the theme directory as base path
*
* @return void
*/
public function render($action = null, $name = null, $noController = null)
{
$this->view->addBasePath($this->getThemeDirectory());
parent::render($action, $name, $noController);
}