| Current Path : /var/www/www.indacotrentino.com/www/app/code/Amasty/Base/Model/Import/Validation/ |
| Current File : /var/www/www.indacotrentino.com/www/app/code/Amasty/Base/Model/Import/Validation/Validator.php |
<?php
/**
* @author Amasty Team
* @copyright Copyright (c) Amasty (https://www.amasty.com)
* @package Magento 2 Base Package
*/
namespace Amasty\Base\Model\Import\Validation;
use Amasty\Base\Model\Import\AbstractImport;
class Validator implements ValidatorInterface
{
/**
* @var \Magento\Framework\DataObject
*/
protected $validationData;
public function __construct(\Magento\Framework\DataObject $validationData)
{
$this->validationData = $validationData;
}
/**
* @var array
*/
protected $errors = [];
/**
* @var array
*/
protected $messageTemplates = [
];
/**
* @inheritdoc
*/
public function validateRow(array $rowData, $behavior)
{
return true;
}
/**
* Usual behavior at the end of validation. Help function
*
* @return array|bool
*/
public function validateResult()
{
if ($this->errors) {
return $this->errors;
}
return true;
}
/**
* @inheritdoc
*/
public function getErrorMessages()
{
return $this->messageTemplates;
}
/**
* @inheritDoc
*/
public function addRuntimeError($message, $level)
{
if (!isset($this->errors[AbstractImport::RUNTIME_ERRORS])) {
$this->errors[AbstractImport::RUNTIME_ERRORS] = [];
}
$this->errors[AbstractImport::RUNTIME_ERRORS][(string)(__('<b>Error!</b> ')) . $message] = $level;
return $this;
}
}