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