Ejemplo n.º 1
0
 /**
  * Declares an association between this object and a ImportJob object.
  *
  * @param      ImportJob $v
  * @return     void
  * @throws     PropelException
  */
 public function setImportJob($v)
 {
     if ($v === null) {
         $this->setJob(NULL);
     } else {
         $this->setJob($v->getId());
     }
     $this->aImportJob = $v;
 }
Ejemplo n.º 2
0
 /**
  * Adds an object to the instance pool.
  *
  * Propel keeps cached copies of objects in an instance pool when they are retrieved
  * from the database.  In some cases -- especially when you override doSelect*()
  * methods in your stub classes -- you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by doSelect*()
  * and retrieveByPK*() calls.
  *
  * @param      ImportJob $value A ImportJob object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool(ImportJob $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getId();
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
Ejemplo n.º 3
0
    }
    if (empty($error)) {
        // All is good.  let's create our job.
        $config = new ImportConfig($engineClass);
        $engine->buildConfig($config);
        $importJob = new ImportJob();
        $importJob->setName($_POST['job_name']);
        $importJob->setDescription($_POST['job_description']);
        $importJob->setCmd(ImportJob::CMD_START);
        $importJob->setConfig(serialize($config));
        $importJob->setStartTime(time());
        $importJob->setStatus("Starting...");
        $importJob->setStatusCode(ImportJob::STATUS_STARTING);
        $importJob->save();
        // Attempt to execute the external importer script, fork it, and love it.
        exec("php importer/import.php " . $importJob->getId() . " > /dev/null", $tempOutput, $retVal);
        if ($retVal != 42) {
            $error = "Failed to run external importer script. Return value: " . $retVal . "<br /> Error:";
            foreach ($tempOutput as $output) {
                $error .= $output . "<br />";
            }
        }
    }
}
print_header("Importer");
if (isset($importJob)) {
    ?>
    <script type="text/javascript">    
		$(document).ready(function() {
    	$("#joblog").flexigrid({
    		url: 'import.php?id=<?php 
Ejemplo n.º 4
0
 /**
  * Declares an association between this object and a ImportJob object.
  *
  * @param      ImportJob $v
  * @return     ImportLogEntry The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setImportJob(ImportJob $v = null)
 {
     if ($v === null) {
         $this->setJob(NULL);
     } else {
         $this->setJob($v->getId());
     }
     $this->aImportJob = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ImportJob object, it will not be re-added.
     if ($v !== null) {
         $v->addImportLogEntry($this);
     }
     return $this;
 }