function tripal_get_job_start

2.x tripal_core.jobs.api.inc tripal_get_job_start($job)
3.x tripal.DEPRECATED.api.inc tripal_get_job_start($job)

DEPRECATED

Returns the start time for a given job

Parameters

$job: An object describing the job

Return value

The start time of the job if it was already run and either "Cancelled" or "Not Yet Started" otherwise

Related topics

3 calls to tripal_get_job_start()
tripal_jobs_get_start_time in legacy/tripal_core/api/tripal_core.DEPRECATED.inc
tripal_jobs_report in tripal/includes/tripal.jobs.inc
Returns the Tripal Job Report
tripal_jobs_view in tripal/includes/tripal.jobs.inc
Returns the HTML code to display a given job
1 string reference to 'tripal_get_job_start'

File

tripal/api/tripal.DEPRECATED.api.inc, line 66
These api functions are deprecated, if your site is currently using them please update your code with the newer tripal.jobs.api functions.

Code

function tripal_get_job_start($job) {

  tripal_report_error('tripal_deprecated', TRIPAL_NOTICE, 
  "DEPRECATED: %function has been removed from the API the end date " .
    "is now accessible via the %property property. Please update your code.", 
  array(
    '%old_function' => 'tripal_get_job_start',
    '%property' => '\$job->start_time_string',
  )
  );

  if ($job->start_time > 0) {
    $start = format_date($job->start_time);
  }
  else {
    if (strcmp($job->job_status, 'Cancelled') == 0) {
      $start = 'Cancelled';
    }
    else {
      $start = 'Not Yet Started';
    }
  }
  return $start;
}