function theme_update_version

7.x update.report.inc theme_update_version($variables)
6.x update.report.inc theme_update_version($version, $tag, $class)

Theme the version display of a project.

Related topics

1 theme call to theme_update_version()
theme_update_report in drupal-6.x/modules/update/update.report.inc
Theme project status report.

File

drupal-6.x/modules/update/update.report.inc, line 240
Code required only when rendering the available updates report.

Code

function theme_update_version($version, $tag, $class) {
  $output = '';
  $output .= '<table class="version ' . $class . '">';
  $output .= '<tr>';
  $output .= '<td class="version-title">' . $tag . "</td>\n";
  $output .= '<td class="version-details">';
  $output .= l($version['version'], $version['release_link']);
  $output .= ' <span class="version-date">(' . format_date($version['date'], 'custom', 'Y-M-d') . ')</span>';
  $output .= "</td>\n";
  $output .= '<td class="version-links">';
  $links = array();
  $links['update-download'] = array(
    'title' => t('Download'),
    'href' => $version['download_link'],
  );
  $links['update-release-notes'] = array(
    'title' => t('Release notes'),
    'href' => $version['release_link'],
  );
  $output .= theme('links', $links);
  $output .= '</td>';
  $output .= '</tr>';
  $output .= "</table>\n";
  return $output;
}