You are here

function contentanalysis_page_analyzer in Content Analysis 6

Same name and namespace in other branches
  1. 8 contentanalysis.module \contentanalysis_page_analyzer()
  2. 7 contentanalysis.module \contentanalysis_page_analyzer()

Presents analyzer admin form

See also

contentanalysis_page_analyzer_form()

1 string reference to 'contentanalysis_page_analyzer'
contentanalysis_menu in ./contentanalysis.module
Implementation of hook_menu().

File

./contentanalysis.module, line 113

Code

function contentanalysis_page_analyzer() {
  drupal_add_css(drupal_get_path('module', 'contentanalysis') . '/contentanalysis.admin.css');
  $output .= drupal_get_form('contentanalysis_page_analyzer_form', $analysis);
  return $output;
}