Lines Matching refs:jobID
99 * @param String $jobID Identifier for this build job
104 public function addBuildJob($jobID, &$config, $content) argument
158 $tmp_dir = $this->createJobFile($jobID, $config, $content);
167 'JobID' => $jobID,
183 * @param String $jobID Identifier for this build job
189 public function tryBuildNow($jobID, &$config, $content, $tag_conf) argument
198 return $this->addBuildJob($jobID, $conf, $content);
208 $tmp_dir = $this->createJobFile($jobID, $config, $content);
260 * @param String $jobID JobID for this build job
263 public function getJobState($jobID) argument
271 $row = $this->db->queryRecord('SELECT * FROM Jobs WHERE JobID = ?', $jobID);
317 * @param String $jobID JobID for this Job
320 public function getJobTaskConf($jobID) argument
328 $row = $this->db->queryRecord('SELECT * FROM Jobs WHERE JobID = ?', $jobID);
343 * @param String $jobID JobID for this Job
346 public function getJobConf($jobID) argument
354 $row = $this->db->queryRecord('SELECT Configuration FROM Jobs WHERE JobID = ?', $jobID);
652 * @param String $jobID JobID for this build job
656 private function createJobFile($jobID, &$config, $content) argument
668 $render_file_name = $jobID . '.' . $config['language'];