Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-inventory-catalog-admin-ui
Controller
Adminhtml
Inventory
BulkTransfer.php
Go to the documentation of this file.
1
<?php
6
declare(strict_types=1);
7
8
namespace
Magento\InventoryCatalogAdminUi\Controller\Adminhtml\Inventory
;
9
10
use
Magento\Backend\App\Action
;
11
use
Magento\Framework\App\ResponseInterface
;
12
use
Magento\Framework\Controller\ResultInterface
;
13
use
Magento\InventoryCatalogAdminUi\Controller\Adminhtml\Bulk\BulkPageProcessor
;
14
18
class
BulkTransfer
extends
Action
19
{
23
const
ADMIN_RESOURCE
=
'Magento_Catalog::products'
;
24
28
private
$processBulkPage;
29
34
public
function
__construct
(
35
Action
\
Context
$context,
36
BulkPageProcessor
$processBulkPage
37
) {
38
parent::__construct($context);
39
40
$this->processBulkPage = $processBulkPage;
41
}
42
46
public
function
execute
()
47
{
48
return
$this->processBulkPage->execute(
__
(
'Bulk Inventory Transfer'
),
true
);
49
}
50
}
Magento\InventoryCatalogAdminUi\Controller\Adminhtml\Inventory\BulkTransfer\__construct
__construct(Action\Context $context, BulkPageProcessor $processBulkPage)
Definition:
BulkTransfer.php:34
Magento\InventoryCatalogAdminUi\Controller\Adminhtml\Inventory
Definition:
BulkTransfer.php:8
Magento\InventoryCatalogAdminUi\Controller\Adminhtml\Inventory\BulkTransfer\execute
execute()
Definition:
BulkTransfer.php:46
__
__()
Definition:
__.php:13
Magento\Framework\Controller\ResultInterface
Definition:
ResultInterface.php:19
Magento\InventoryCatalogAdminUi\Controller\Adminhtml\Inventory\BulkTransfer\ADMIN_RESOURCE
const ADMIN_RESOURCE
Definition:
BulkTransfer.php:23
Magento\Backend\App\Action
Definition:
Action.php:17
Magento\Backend\App\Action\Context
Definition:
Context.php:25
Magento\Backend\App\Action
Definition:
Context.php:6
Magento\InventoryCatalogAdminUi\Controller\Adminhtml\Bulk\BulkPageProcessor
Definition:
BulkPageProcessor.php:23
Magento\Framework\App\ResponseInterface
Definition:
ResponseInterface.php:14
Magento\InventoryCatalogAdminUi\Controller\Adminhtml\Inventory\BulkTransfer
Definition:
BulkTransfer.php:18