1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Controller\Adminhtml\Invoice\AbstractInvoice;
- abstract class Grid extends \Magento\Backend\App\Action
- {
- /**
- * Authorization level of a basic admin session
- *
- * @see _isAllowed()
- */
- const ADMIN_RESOURCE = 'Magento_Sales::sales_invoice';
- /**
- * @var \Magento\Framework\View\Result\LayoutFactory
- */
- protected $resultLayoutFactory;
- /**
- * @param \Magento\Backend\App\Action\Context $context
- * @param \Magento\Framework\View\Result\LayoutFactory $resultLayoutFactory
- */
- public function __construct(
- \Magento\Backend\App\Action\Context $context,
- \Magento\Framework\View\Result\LayoutFactory $resultLayoutFactory
- ) {
- parent::__construct($context);
- $this->resultLayoutFactory = $resultLayoutFactory;
- }
- /**
- * Order grid
- *
- * @return \Magento\Framework\View\Result\Layout
- */
- public function execute()
- {
- return $this->resultLayoutFactory->create();
- }
- }
|