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)
Main Page
Related Pages
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
c
d
e
f
g
h
i
m
p
r
s
t
u
+
Functions
_
c
d
e
f
g
h
i
m
p
r
s
t
u
Variables
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
(
_
a
b
c
d
e
f
g
h
i
j
m
n
o
p
q
r
s
t
u
v
w
+
Functions
_
c
d
e
f
g
m
o
r
s
t
v
+
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
m
n
o
p
q
r
s
t
u
v
w
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Pages
vendor
magento
module-inventory-catalog-admin-ui
Controller
Adminhtml
Source
BulkUnassign.php
Go to the documentation of this file.
1
<?php
6
declare(strict_types=1);
7
8
namespace
Magento\InventoryCatalogAdminUi\Controller\Adminhtml\Source
;
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
BulkUnassign
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 source unassignment'
),
true
);
49
}
50
}
Magento\InventoryCatalogAdminUi\Controller\Adminhtml\Source
Definition:
BulkAssign.php:8
Magento\InventoryCatalogAdminUi\Controller\Adminhtml\Source\BulkUnassign\ADMIN_RESOURCE
const ADMIN_RESOURCE
Definition:
BulkUnassign.php:23
__
__()
Definition:
__.php:13
Magento\Framework\Controller\ResultInterface
Definition:
ResultInterface.php:19
Magento\InventoryCatalogAdminUi\Controller\Adminhtml\Source\BulkUnassign\execute
execute()
Definition:
BulkUnassign.php:46
Magento\Backend\App\Action
Definition:
Action.php:17
Magento\Backend\App\Action\Context
Definition:
Context.php:25
Magento\InventoryCatalogAdminUi\Controller\Adminhtml\Source\BulkUnassign\__construct
__construct(Action\Context $context, BulkPageProcessor $processBulkPage)
Definition:
BulkUnassign.php:34
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\Source\BulkUnassign
Definition:
BulkUnassign.php:18