function hacked_theme in Hacked! 7.2
Same name and namespace in other branches
- 8.2 hacked.module \hacked_theme()
- 6.2 hacked.module \hacked_theme()
- 6 hacked.module \hacked_theme()
Implementation of the hook_theme() registry.
File
- ./
hacked.module, line 128 - The Hacked! module, shows which project have been changed since download.
Code
function hacked_theme() {
return array(
'hacked_report' => array(
'arguments' => array(
'data' => NULL,
),
'file' => 'hacked.theme.inc',
),
'hacked_detailed_report' => array(
'arguments' => array(
'project' => NULL,
),
'file' => 'hacked.details.inc',
),
);
}