CustomParserConfigurator.php
666 Bytes
<?php
namespace backend\components\parsers;
use yii\multiparser\ParserConfigurator;
class CustomParserConfigurator extends ParserConfigurator
{
protected static $configuration = [
'csv' =>
['web' =>
['class' => 'backend\components\parsers\CustomCsvParser',
'auto_detect_first_line' => true,]]];
public static $basic_column = [
"BRAND" => 'Бренд',
"ARTICLE"=> 'Артикул',
"PRICE" => 'Цена',
"DESCR" => 'Наименование',
"BOX" => 'Колво',
"ADD_BOX"=> 'В пути',
"GROUP" => 'Группа RG'
];
}