update_theme
- Versions
- 6 – 7
update_theme()
Implementation of the hook_theme() registry.
Code
modules/update/update.module, line 164
<?php
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),
),
);
}
?>Login or register to post comments 