You are here

function contentanalysis_page_analyzer in Content Analysis 8

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

Generate contentanalysis_page_analyzer admin form.

See also

contentanalysis_page_analyzer_form()

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

File

./contentanalysis.module, line 153

Code

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