function _hacked_reports_hacked_details in Hacked! 5
1 string reference to '_hacked_reports_hacked_details'
- hacked_menu in ./
hacked.module - Implementation of hook_menu().
File
- ./
hacked.module, line 81 - The Hacked! module, shows which project have been changed since download.
Code
function _hacked_reports_hacked_details($project_name) {
require_once drupal_get_path('module', 'hacked') . '/hacked.details.inc';
// Load the project:
if ($project = hacked_project_load($project_name)) {
// Set the page title:
hacked_reports_hacked_details_title($project);
return hacked_reports_hacked_details($project);
}
else {
drupal_not_found();
}
}