17 lines
422 B
PHP
17 lines
422 B
PHP
<?php
|
|
|
|
/**
|
|
* Subclass for representing a row from the 'st_task_scheduler_import_product' table.
|
|
*
|
|
*
|
|
*
|
|
* @package plugins.stTaskSchedulerImportPlugin.lib.model
|
|
*/
|
|
class stTaskSchedulerImportProduct extends BasestTaskSchedulerImportProduct
|
|
{
|
|
public function setTaskSchedulerImport(stTaskSchedulerImportBaseAbstract $import)
|
|
{
|
|
$this->setImportHashId($import->getConfiguration()->getHashId());
|
|
}
|
|
}
|