You are here

function insight_insight_analyzer_info in Insight 7

1 call to insight_insight_analyzer_info()
insight_contentanalysis_analysis_alter in ./insight.module

File

./insight.module, line 918

Code

function insight_insight_analyzer_info() {
  return array(
    'insight_content' => array(
      'title' => t('Content Insight (comming soon)'),
      'reports' => array(),
      'type' => 'content',
    ),
  );
  $analyzers['insight_content'] = array(
    'title' => t('Content Insight'),
    'type' => 'content',
    'contentanalyzer' => 'insight_content',
  );
  $reports['insight_seo'] = array(
    'title' => t('SEO Insight'),
    'short title' => t('iSEO'),
    'score type' => 'percentage',
  );
  $reports['insight_style'] = array(
    'title' => t('Style Insight'),
    'short title' => t('iStyle'),
    'score type' => 'value',
  );
  $reports['insight_terms'] = array(
    'title' => t('Terms Insight'),
    'short title' => t('iTerms'),
    'score type' => 'percentage',
  );
  $reports['insight_links'] = array(
    'title' => t('Links Insight'),
    'short title' => t('iLinks'),
    'score type' => 'value',
  );
  $analyzers['insight_content']['reports'] = $reports;
  return $analyzers;
}