You are here

hacked.details.inc in Hacked! 6.2

File

hacked.details.inc
View source
<?php

function hacked_reports_hacked_details($project) {

  // Send the results to the theme function:
  $out = theme('hacked_detailed_report', $project
    ->compute_details());
  return $out;
}

/**
 * Theme project status report.
 *
 * @ingroup themeable
 */
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',
  ));
}

Functions

Namesort descending Description
hacked_reports_hacked_details
theme_hacked_detailed_report Theme project status report.