| Current Path : /home/rtorresani/www/vendor/magento/framework/View/Element/Message/Renderer/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/View/Element/Message/Renderer/BlockRenderer.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\View\Element\Message\Renderer;
use Magento\Framework\Message\MessageInterface;
use Magento\Framework\View\Element\Message\Renderer\BlockRenderer\Template;
class BlockRenderer implements RendererInterface
{
/**
* complex_renderer
*/
const CODE = 'block_renderer';
/**
* @var array
*/
private $configuration;
/**
* @var Template
*/
private $template;
/**
* @param Template $template
*/
public function __construct(
Template $template
) {
$this->template = $template;
}
/**
* Renders complex message
*
* @param MessageInterface $message
* @param array $initializationData
* @return string
*/
public function render(MessageInterface $message, array $initializationData)
{
$this->setUpConfiguration($message->getData(), $initializationData);
$result = $this->template->toHtml();
$this->tearDownConfiguration();
return $result;
}
/**
* @param array $configuration
* @param array $initializationData
* @return void
*/
private function setUpConfiguration(array $configuration, array $initializationData)
{
if (!isset($initializationData['template'])) {
throw new \InvalidArgumentException('Template should be provided for the renderer.');
}
$this->configuration = $configuration;
$this->template->setTemplate($initializationData['template']);
$this->template->setData($configuration);
}
/**
* @return void
*/
private function tearDownConfiguration()
{
foreach (array_keys($this->configuration) as $key) {
$this->template->unsetData($key);
unset($this->configuration[$key]);
}
$this->template->setTemplate('');
}
}