function tripal_get_job_end

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

DEPRECATED

Returns the end time for a given job

Parameters

$job: An object describing the job

Return value

The end time of the job if it was already run and empty otherwise

Related topics

3 calls to tripal_get_job_end()
tripal_jobs_get_end_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_end'

File

tripal/api/tripal.DEPRECATED.api.inc, line 33
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_end($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_jobs_get_end_time',
    '%property' => '\$job->end_time_string',
  )
  );

  if ($job->end_time > 0) {
    $end = format_date($job->end_time);
  }
  else {
    $end = '';
  }

  return $end;
}