update_theme

6 update.module update_theme()
7 update.module update_theme()
8 update.module update_theme()

Implements hook_theme().

File

modules/update/update.module, line 264
The "Update status" module checks for available updates of Drupal core and any installed contributed modules and themes. It warns site administrators if newer releases are available via the system status report (admin/reports/status), the…

Code

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),
    ),
  );
}
Login or register to post comments