![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/app/code/Xtento/StockImport/Controller/Adminhtml/ |
<?php /** * Product: Xtento_StockImport * ID: u66QkJ5rBwmimhUzUElhIKqqWRvsbhC3WLqSMk5AjmQ= * Last Modified: 2019-02-05T17:10:52+00:00 * File: app/code/Xtento/StockImport/Controller/Adminhtml/Log.php * Copyright: Copyright (c) XTENTO GmbH & Co. KG <[email protected]> / All rights reserved. */ namespace Xtento\StockImport\Controller\Adminhtml; abstract class Log extends \Xtento\StockImport\Controller\Adminhtml\Action { /** * @var \Magento\Framework\Registry */ protected $registry; /** * @var \Magento\Framework\Escaper */ protected $escaper; /** * @var \Magento\Framework\View\Result\PageFactory */ protected $resultPageFactory; /** * @var \Xtento\StockImport\Model\LogFactory */ protected $logFactory; /** * @var \Xtento\StockImport\Helper\Module */ protected $moduleHelper; /** * Log constructor. * * @param \Magento\Backend\App\Action\Context $context * @param \Xtento\StockImport\Helper\Module $moduleHelper * @param \Xtento\XtCore\Helper\Cron $cronHelper * @param \Xtento\StockImport\Model\ResourceModel\Profile\CollectionFactory $profileCollectionFactory * @param \Magento\Framework\Registry $registry * @param \Magento\Framework\Escaper $escaper * @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig * @param \Xtento\StockImport\Model\LogFactory $logFactory */ public function __construct( \Magento\Backend\App\Action\Context $context, \Xtento\StockImport\Helper\Module $moduleHelper, \Xtento\XtCore\Helper\Cron $cronHelper, \Xtento\StockImport\Model\ResourceModel\Profile\CollectionFactory $profileCollectionFactory, \Magento\Framework\Registry $registry, \Magento\Framework\Escaper $escaper, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, \Xtento\StockImport\Model\LogFactory $logFactory ) { parent::__construct($context, $moduleHelper, $cronHelper, $profileCollectionFactory, $scopeConfig); $this->registry = $registry; $this->escaper = $escaper; $this->logFactory = $logFactory; $this->moduleHelper = $moduleHelper; } /** * Check if user has enough privileges * @return bool */ protected function _isAllowed() { return $this->_authorization->isAllowed('Xtento_StockImport::log'); } /** * @param $resultPage \Magento\Backend\Model\View\Result\Page */ protected function updateMenu($resultPage) { $resultPage->setActiveMenu('Xtento_StockImport::log'); $resultPage->addBreadcrumb(__('Products'), __('Products')); $resultPage->addBreadcrumb(__('Execution Log'), __('Execution Log')); $resultPage->getConfig()->getTitle()->prepend(__('Stock Import - Execution Log')); } }