本文整理汇总了PHP中Magento\Framework\View\Result\Page::renderResult方法的典型用法代码示例。如果您正苦于以下问题:PHP Page::renderResult方法的具体用法?PHP Page::renderResult怎么用?PHP Page::renderResult使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Magento\Framework\View\Result\Page
的用法示例。
在下文中一共展示了Page::renderResult方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: renderResult
/**
* {@inheritdoc}
*/
public function renderResult(\Magento\Framework\App\ResponseInterface $response)
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'renderResult');
if (!$pluginInfo) {
return parent::renderResult($response);
} else {
return $this->___callPlugins('renderResult', func_get_args(), $pluginInfo);
}
}
示例2: testPrepareAndRender
/**
* @magentoDataFixture Magento/Catalog/_files/multiple_products.php
* @magentoAppIsolation enabled
* @magentoAppArea frontend
*/
public function testPrepareAndRender()
{
// need for \Magento\Review\Block\Form::getProductInfo()
$this->objectManager->get('Magento\\Framework\\App\\RequestInterface')->setParam('id', 10);
$this->_helper->prepareAndRender($this->page, 10, $this->_controller);
/** @var \Magento\TestFramework\Response $response */
$response = $this->objectManager->get('Magento\\TestFramework\\Response');
$this->page->renderResult($response);
$this->assertNotEmpty($response->getBody());
$this->assertEquals(10, $this->objectManager->get('Magento\\Catalog\\Model\\Session')->getLastViewedProductId());
}
示例3: renderLayout
/**
* Rendering layout
*
* @param string $output
* @return $this
*/
public function renderLayout($output = '')
{
if ($this->_actionFlag->get('', 'no-renderLayout')) {
return $this;
}
\Magento\Framework\Profiler::start('LAYOUT');
\Magento\Framework\Profiler::start('layout_render');
if ('' !== $output) {
$this->getLayout()->addOutputElement($output);
}
$this->_eventManager->dispatch('controller_action_layout_render_before');
$this->_eventManager->dispatch('controller_action_layout_render_before_' . $this->_request->getFullActionName());
$this->page->renderResult($this->_response);
\Magento\Framework\Profiler::stop('layout_render');
\Magento\Framework\Profiler::stop('LAYOUT');
return $this;
}