| Current Path : /home/rtorresani/www/vendor/magento/module-import-export/Model/Source/Import/Behavior/ |
| Current File : //home/rtorresani/www/vendor/magento/module-import-export/Model/Source/Import/Behavior/Basic.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\ImportExport\Model\Source\Import\Behavior;
use Magento\ImportExport\Model\Import;
/**
* Import behavior source model used for defining the behaviour during the import.
*
* @api
* @since 100.0.2
*/
class Basic extends \Magento\ImportExport\Model\Source\Import\AbstractBehavior
{
/**
* @inheritdoc
*/
public function toArray()
{
return [
Import::BEHAVIOR_APPEND => __('Add/Update'),
Import::BEHAVIOR_REPLACE => __('Replace'),
Import::BEHAVIOR_DELETE => __('Delete')
];
}
/**
* @inheritdoc
*/
public function getCode()
{
return 'basic';
}
/**
* @inheritdoc
*/
public function getNotes($entityCode)
{
$messages = ['catalog_product' => [
Import::BEHAVIOR_APPEND => __(
"New product data is added to the existing product data for the existing entries in the database. "
. "All fields except sku can be updated."
),
Import::BEHAVIOR_REPLACE => __(
"The existing product data is replaced with new data. <b>Exercise caution when replacing data "
. "because the existing product data will be completely cleared and all references "
. "in the system will be lost.</b>"
),
Import::BEHAVIOR_DELETE => __(
"Any entities in the import data that already exist in the database are deleted from the database."
),
]];
return isset($messages[$entityCode]) ? $messages[$entityCode] : [];
}
}