This repository has been archived on 2020-01-20. You can view files and clone it, but cannot push or open issues or pull requests.
lilac/classes/ImportJob.php
2011-08-18 14:54:38 +00:00

69 lines
1.5 KiB
PHP
Executable file

<?php
require_once 'om/BaseImportJob.php';
/**
* Skeleton subclass for representing a row from the 'import_job' table.
*
* Import Job Information
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package
*/
class ImportJob extends BaseImportJob {
const CMD_START = "start";
const CMD_STOP = "stop";
const STATUS_PENDING = 1;
const STATUS_STARTING = 2;
const STATUS_RUNNING = 3;
const STATUS_FINISHED = 4;
const STATUS_FAILED = 50;
public function __construct() {
}
public function addLogEntry($text, $type = 3) {
if(!ImportLogEntry::isValidType($type)) {
return false;
}
$entry = new ImportLogEntry();
$entry->setTime(time());
$entry->setType($type);
$entry->setImportJob($this);
$entry->setText($text);
$entry->save();
return true;
}
public function setStatus($v) {
parent::setStatus($v);
// update the status time
$this->setStatusChangeTime(time());
}
public function clearLog() {
$c = new Criteria();
$c->add(ImportLogEntryPeer::JOB, $this->getId());
ImportLogEntryPeer::doDelete($c);
}
public function addError($text) {
$this->addLogEntry($text, ImportLogEntry::TYPE_ERROR);
}
public function addWarning($text) {
$this->addLogEntry($text, ImportLogEntry::TYPE_WARNING);
}
public function addNotice($text) {
$this->addLogEntry($text, ImportLogEntry::TYPE_NOTICE);
}
} // ImportJob