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-asynchronous-operations
Model
BulkStatus
Options.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\AsynchronousOperations\Model\BulkStatus
;
7
8
use
Magento\AsynchronousOperations\Api\Data\BulkSummaryInterface
;
9
13
class
Options
implements
\Magento\Framework\Data\OptionSourceInterface
14
{
18
public
function
toOptionArray
()
19
{
20
return
[
21
[
22
'value'
=>
BulkSummaryInterface::NOT_STARTED
,
23
'label'
=>
'Not Started'
24
],
25
[
26
'value'
=>
BulkSummaryInterface::IN_PROGRESS
,
27
'label'
=>
'In Progress'
28
],
29
[
30
'value'
=>
BulkSummaryInterface::FINISHED_SUCCESSFULLY
,
31
'label'
=>
'Finished Successfully'
32
],
33
[
34
'value'
=>
BulkSummaryInterface::FINISHED_WITH_FAILURE
,
35
'label'
=>
'Finished with Failure'
36
]
37
];
38
}
39
}
Magento\AsynchronousOperations\Api\Data\BulkSummaryInterface
Definition:
BulkSummaryInterface.php:14
Magento\AsynchronousOperations\Model\BulkStatus
Definition:
CalculatedStatusSql.php:7
Magento\Framework\Bulk\BulkSummaryInterface\FINISHED_WITH_FAILURE
const FINISHED_WITH_FAILURE
Definition:
BulkSummaryInterface.php:31
Magento\Framework\Data\OptionSourceInterface
Definition:
OptionSourceInterface.php:14
Magento\AsynchronousOperations\Model\BulkStatus\Options\toOptionArray
toOptionArray()
Definition:
Options.php:18
Magento\AsynchronousOperations\Model\BulkStatus\Options
Definition:
Options.php:13
Magento\Framework\Bulk\BulkSummaryInterface\FINISHED_SUCCESSFULLY
const FINISHED_SUCCESSFULLY
Definition:
BulkSummaryInterface.php:30
Magento\Framework\Bulk\BulkSummaryInterface\IN_PROGRESS
const IN_PROGRESS
Definition:
BulkSummaryInterface.php:29
Magento\Framework\Bulk\BulkSummaryInterface\NOT_STARTED
const NOT_STARTED
Definition:
BulkSummaryInterface.php:28