13 lines
283 B
PHP
13 lines
283 B
PHP
<?php
|
|
|
|
namespace Edeclic\Virebent\Controller\Index;
|
|
|
|
class Index extends \Magento\Framework\App\Action\Action
|
|
{
|
|
public function execute()
|
|
{
|
|
$this->_view->loadLayout();
|
|
$this->_view->getLayout()->initMessages();
|
|
$this->_view->renderLayout();
|
|
}
|
|
} |