function update_theme in Drupal 6
Same name and namespace in other branches
- 8 core/modules/update/update.module \update_theme()
- 7 modules/update/update.module \update_theme()
- 9 core/modules/update/update.module \update_theme()
Implementation of the hook_theme() registry.
File
- 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…
Code
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,
),
),
);
}