function hacked_reports_hacked_details in Hacked! 7.2
Same name and namespace in other branches
- 5 hacked.details.inc \hacked_reports_hacked_details()
- 6.2 hacked.details.inc \hacked_reports_hacked_details()
- 6 hacked.details.inc \hacked_reports_hacked_details()
1 string reference to 'hacked_reports_hacked_details'
- hacked_menu in ./
hacked.module - Implementation of hook_menu().
File
- ./
hacked.details.inc, line 4
Code
function hacked_reports_hacked_details($project) {
// Send the results to the theme function:
$out = theme('hacked_detailed_report', array(
'project' => $project
->compute_details(),
));
return $out;
}