function tripal_jobs_view

2.x tripal_core.jobs.inc tripal_jobs_view($job_id)
3.x tripal.jobs.inc tripal_jobs_view($job_id)
1.x jobs.inc tripal_jobs_view($job_id)

Returns the HTML code to display a given job

Parameters

$job_id: The job_id of the job to display

Return value

The HTML describing the indicated job

Related topics

1 string reference to 'tripal_jobs_view'
tripal_core_menu in tripal_core/tripal_core.module
Implements hook_menu(). Defines all menu items needed by Tripal Core

File

tripal_core/includes/jobs.inc, line 156
Contains functions related to the display of Tripal jobs in a Tripal website.

Code

function tripal_jobs_view($job_id) {
  return theme('tripal_core_job_view', $job_id);
}