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-catalog-import-export
Model
Export
RowCustomizerInterface.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\CatalogImportExport\Model\Export
;
7
14
interface
RowCustomizerInterface
15
{
23
public
function
prepareData
(
$collection
,
$productIds
);
24
31
public
function
addHeaderColumns
(
$columns
);
32
40
public
function
addData
($dataRow,
$productId
);
41
49
public
function
getAdditionalRowsCount
($additionalRowsCount,
$productId
);
50
}
$productId
$productId
Definition:
website_attribute_sync.php:26
Magento\CatalogImportExport\Model\Export
Definition:
ProductTest.php:6
Magento\CatalogImportExport\Model\Export\RowCustomizerInterface\addData
addData($dataRow, $productId)
Magento\CatalogImportExport\Model\Export\RowCustomizerInterface\prepareData
prepareData($collection, $productIds)
$columns
$columns
Definition:
default.phtml:15
Magento\CatalogImportExport\Model\Export\RowCustomizerInterface\getAdditionalRowsCount
getAdditionalRowsCount($additionalRowsCount, $productId)
Magento\CatalogImportExport\Model\Export\RowCustomizerInterface
Definition:
RowCustomizerInterface.php:14
$productIds
$productIds
Definition:
product_with_multiple_options.php:11
$collection
$collection
Definition:
catalog_category_with_apostrophe_rollback.php:17
Magento\CatalogImportExport\Model\Export\RowCustomizerInterface\addHeaderColumns
addHeaderColumns($columns)