theme_update_status_label

Versions
mediamosa-21
theme_update_status_label($variables)

Generate the HTML for the label to display for a project's update status.

See also

update_calculate_project_data()

Parameters

$variables An associative array containing:

  • status: The integer code for a project's current update status.

Code

modules/update/update.report.inc, line 254

<?php
function theme_update_status_label($variables) {
  switch ($variables['status']) {
    case UPDATE_NOT_SECURE:
      return '<span class="security-error">' . t('Security update required!') . '</span>';

    case UPDATE_REVOKED:
      return '<span class="revoked">' . t('Revoked!') . '</span>';

    case UPDATE_NOT_SUPPORTED:
      return '<span class="not-supported">' . t('Not supported!') . '</span>';

    case UPDATE_NOT_CURRENT:
      return '<span class="not-current">' . t('Update available') . '</span>';

    case UPDATE_CURRENT:
      return '<span class="current">' . t('Up to date') . '</span>';

  }
}
?>