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
framework-bulk
BulkSummaryInterface.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\Bulk
;
7
13
interface
BulkSummaryInterface
14
{
18
const
BULK_ID
=
'uuid'
;
19
const
DESCRIPTION
=
'description'
;
20
const
START_TIME
=
'start_time'
;
21
const
USER_ID
=
'user_id'
;
22
const
OPERATION_COUNT
=
'operation_count'
;
28
const
NOT_STARTED
= 0;
29
const
IN_PROGRESS
= 1;
30
const
FINISHED_SUCCESSFULLY
= 2;
31
const
FINISHED_WITH_FAILURE
= 3;
40
public
function
getBulkId
();
41
49
public
function
setBulkId
($bulkUuid);
50
57
public
function
getDescription
();
58
66
public
function
setDescription
(
$description
);
67
74
public
function
getStartTime
();
75
83
public
function
setStartTime
($timestamp);
84
91
public
function
getUserId
();
92
100
public
function
setUserId
($userId);
101
108
public
function
getOperationCount
();
109
117
public
function
setOperationCount
($operationCount);
118
}
$description
$description
Definition:
pre_composer_update_2.3.php:162
Magento\Framework\Bulk\BulkSummaryInterface\setOperationCount
setOperationCount($operationCount)
Magento\Framework\Bulk\BulkSummaryInterface\setDescription
setDescription($description)
Magento\Framework\Bulk\BulkSummaryInterface\getBulkId
getBulkId()
Magento\Framework\Bulk\BulkSummaryInterface\USER_ID
const USER_ID
Definition:
BulkSummaryInterface.php:21
Magento\Framework\Bulk\BulkSummaryInterface\DESCRIPTION
const DESCRIPTION
Definition:
BulkSummaryInterface.php:19
Magento\Framework\Bulk\BulkSummaryInterface\OPERATION_COUNT
const OPERATION_COUNT
Definition:
BulkSummaryInterface.php:22
Magento\Framework\Bulk\BulkSummaryInterface\getStartTime
getStartTime()
Magento\Framework\Bulk\BulkSummaryInterface\START_TIME
const START_TIME
Definition:
BulkSummaryInterface.php:20
Magento\Framework\Bulk\BulkSummaryInterface\getOperationCount
getOperationCount()
Magento\Framework\Bulk\BulkSummaryInterface\setStartTime
setStartTime($timestamp)
Magento\Framework\Bulk\BulkSummaryInterface\getDescription
getDescription()
Magento\Framework\Bulk\BulkSummaryInterface\FINISHED_WITH_FAILURE
const FINISHED_WITH_FAILURE
Definition:
BulkSummaryInterface.php:31
Magento\Framework\Bulk\BulkSummaryInterface\FINISHED_SUCCESSFULLY
const FINISHED_SUCCESSFULLY
Definition:
BulkSummaryInterface.php:30
Magento\Framework\Bulk\BulkSummaryInterface\setBulkId
setBulkId($bulkUuid)
Magento\Framework\Bulk\BulkSummaryInterface
Definition:
BulkSummaryInterface.php:13
Magento\Framework\Bulk
Definition:
BulkManagementInterface.php:6
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
Magento\Framework\Bulk\BulkSummaryInterface\getUserId
getUserId()
Magento\Framework\Bulk\BulkSummaryInterface\BULK_ID
const BULK_ID
Definition:
BulkSummaryInterface.php:18
Magento\Framework\Bulk\BulkSummaryInterface\setUserId
setUserId($userId)