1
0
Fork 0
mirror of synced 2025-03-30 03:30:12 +03:00
magento-module/Controller/Index/Display.php
Alex Lushpai f4000c9874 v2.0
2017-05-31 15:24:46 +03:00

19 lines
No EOL
440 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();
}
}