You are here

public function SiteAuditCheckContentFieldInstances::getResultInfo in Site Audit 7

Same name and namespace in other branches
  1. 8.2 Check/Content/FieldInstances.php \SiteAuditCheckContentFieldInstances::getResultInfo()

Implements \SiteAudit\Check\Abstract\getResultInfo().

Overrides SiteAuditCheckAbstract::getResultInfo

File

Check/Content/FieldInstances.php, line 34
Contains \SiteAudit\Check\Content\FieldInstances.

Class

SiteAuditCheckContentFieldInstances
Class SiteAuditCheckContentFieldInstances.

Code

public function getResultInfo() {
  if (empty($this->registry['field_api_map'])) {
    return dt('Function field_info_field_map does not exist, cannot analyze.');
  }
  $ret_val = '';
  if (drush_get_option('html') == TRUE) {
    $ret_val .= '<table class="table table-condensed">';
    $ret_val .= '<tr><th>' . dt('Entity Type') . '</th><th>' . dt('Field Name') . '</th><th>' . dt('Bundle Name') . '</th><th>' . dt('Count') . '</th></tr>';
    foreach ($this->registry['field_instance_counts'] as $bundle_name => $entity_types) {
      foreach ($entity_types as $entity_type => $fields) {
        foreach ($fields as $field_name => $count) {
          $ret_val .= "<tr><td>{$entity_type}</td><td>{$field_name}</td><td>{$bundle_name}</td><td>{$count}</td></tr>";
        }
      }
    }
    $ret_val .= '</table>';
  }
  else {
    $rows = 0;
    foreach ($this->registry['field_instance_counts'] as $bundle_name => $entity_types) {
      if ($rows++ > 0) {
        $ret_val .= PHP_EOL;
        if (!drush_get_option('json')) {
          $ret_val .= str_repeat(' ', 4);
        }
      }
      $ret_val .= dt('Bundle: !bundle_name', array(
        '!bundle_name' => $bundle_name,
      ));
      foreach ($entity_types as $entity_type => $fields) {
        $ret_val .= PHP_EOL;
        if (!drush_get_option('json')) {
          $ret_val .= str_repeat(' ', 6);
        }
        $ret_val .= dt('Entity Type: !entity_type', array(
          '!entity_type' => $entity_type,
        ));
        foreach ($fields as $field_name => $count) {
          $ret_val .= PHP_EOL;
          if (!drush_get_option('json')) {
            $ret_val .= str_repeat(' ', 8);
          }
          $ret_val .= "{$field_name}: {$count}";
        }
      }
    }
  }
  return $ret_val;
}