function theme_hacked_detailed_report in Hacked! 6.2
Same name and namespace in other branches
- 5 hacked.details.inc \theme_hacked_detailed_report()
- 6 hacked.details.inc \theme_hacked_detailed_report()
- 7.2 hacked.details.inc \theme_hacked_detailed_report()
Theme project status report.
1 theme call to theme_hacked_detailed_report()
File
- ./
hacked.details.inc, line 16
Code
function theme_hacked_detailed_report($project) {
foreach ($project['files'] as $file => $status) {
switch ($status) {
case HACKED_STATUS_UNHACKED:
$class = 'ok';
$icon = theme('image', 'misc/watchdog-ok.png', t('Unchanged'), t('Unchanged'));
break;
case HACKED_STATUS_DELETED:
$class = 'error';
$icon = theme('image', 'misc/watchdog-error.png', t('Changed'), t('Changed'));
break;
case HACKED_STATUS_HACKED:
$class = 'warning';
$icon = theme('image', 'misc/watchdog-warning.png', t('Deleted'), t('Deleted'));
break;
case HACKED_STATUS_PERMISSION_DENIED:
$class = 'warning';
$icon = theme('image', 'misc/watchdog-warning.png', t('Permission Denied'), t('Permission Denied'));
break;
case HACKED_STATUS_UNCHECKED:
default:
$class = 'warning';
$icon = theme('image', 'misc/watchdog-warning.png', t('Unchecked'), t('Unchecked'));
break;
}
$row = '<div class="version-status">';
switch ($status) {
case HACKED_STATUS_UNHACKED:
$row .= t('Unchanged');
break;
case HACKED_STATUS_HACKED:
$row .= '<span class="not-current">' . t('Changed!') . '</span>';
break;
case HACKED_STATUS_DELETED:
$row .= '<span class="">' . t('Deleted') . '</span>';
break;
case HACKED_STATUS_PERMISSION_DENIED:
$row .= '<span class="">' . t('Permission Denied') . '</span>';
break;
case HACKED_STATUS_UNCHECKED:
default:
$row .= '<span class="">' . t('Unchecked') . '</span>';
break;
}
$row .= '<span class="icon">' . $icon . '</span>';
$row .= "</div>\n";
$row .= '<div class="project">';
if (user_access('view diffs of changed files') && module_exists('diff') && $status != HACKED_STATUS_UNHACKED && !empty($project['diffable'][$file])) {
$row .= l($file, 'admin/reports/hacked/' . $project['name'] . '/diff/' . $file);
}
else {
$row .= check_plain($file);
}
$row .= "</div>\n";
$row .= "</div>\n";
$rows[] = array(
'class' => $class,
'data' => array(
$row,
),
);
}
drupal_add_css(drupal_get_path('module', 'update') . '/update.css');
return theme('table', NULL, $rows, array(
'class' => 'update',
));
}