function update_theme

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

Implementation of the hook_theme() registry.

Archivo

drupal-6.x/modules/update/update.module, line 164
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…

Código

function update_theme() {
  return array(
    'update_settings' => array(
      'arguments' => array('form' => NULL),
    ),
    'update_report' => array(
      'arguments' => array('data' => NULL),
    ),
    'update_version' => array(
      'arguments' => array(
        'version' => NULL,
        'tag' => NULL,
        'class' => NULL,
      ),
    ),
  );
}