function update_theme

Same name and namespace in other branches
  1. 6.x drupal-6.x/modules/update/update.module \update_theme()

Implements hook_theme().

Archivo

drupal-7.x/modules/update/update.module, line 270
Handles updates of Drupal core and contributed projects.

Código

function update_theme() {
  return array(
    'update_manager_update_form' => array(
      'render element' => 'form',
      'file' => 'update.manager.inc',
    ),
    'update_last_check' => array(
      'variables' => array('last' => NULL),
    ),
    'update_report' => array(
      'variables' => array('data' => NULL),
    ),
    'update_version' => array(
      'variables' => array(
        'version' => NULL,
        'tag' => NULL,
        'class' => array(),
      ),
    ),
    'update_status_label' => array(
      'variables' => array('status' => NULL),
    ),
  );
}