13 lines
404 B
PHP
13 lines
404 B
PHP
<?php
|
|
|
|
if (SF_APP == 'backend' && floatval(phpversion()) >= 7.1)
|
|
{
|
|
stTaskSchedulerImportConfiguration::add('st_soteshop_task_import', stSoteshopTaskImportTask::class, 'Soteshop', [
|
|
'version' => stTaskSchedulerImportConfiguration::VERSION,
|
|
'ignore_limit' => true,
|
|
'with' => [
|
|
'product_status' => true,
|
|
'product_price_array' => true,
|
|
]
|
|
]);
|
|
} |