| Current Path : /home/rtorresani/www/app/code/Webkul/BuyButton/Controller/Adminhtml/Index/ |
| Current File : //home/rtorresani/www/app/code/Webkul/BuyButton/Controller/Adminhtml/Index/Index.php |
<?php
/**
* Webkul Software.
*
* @category Webkul
* @package Webkul_BuyButton
* @author Webkul
* @copyright Copyright (c) Webkul Software Private Limited (https://webkul.com)
* @license https://store.webkul.com/license.html
*/
namespace Webkul\BuyButton\Controller\Adminhtml\Index;
use Magento\Framework\View\Result\PageFactory;
use Magento\Backend\Model\View\Result\ForwardFactory;
class Index extends AbstractBuyButton
{
/**
* @inheritDoc
*/
public function execute()
{
$resultPage = $this->_resultPageFactory->create();
$resultPage->setActiveMenu('Webkul_BuyButton::select');
$resultPage->getConfig()->getTitle()->prepend(__('Select Products'));
return $resultPage;
}
}