1
0
mirror of synced 2024-12-01 09:16:02 +03:00
magento-module/Controller/Index/Display.php
2018-03-12 16:34:48 +03:00

21 lines
494 B
PHP

<?php
namespace Retailcrm\Retailcrm\Controller\Index;
class Display extends \Magento\Framework\App\Action\Action
{
protected $_pageFactory;
public function __construct(
\Magento\Framework\App\Action\Context $context,
\Magento\Framework\View\Result\PageFactory $pageFactory
) {
$this->_pageFactory = $pageFactory;
return parent::__construct($context);
}
public function execute()
{
return $this->_pageFactory->create();
}
}