function kwresearch_contentanalysis_analyzer_info in Keyword Research 7
Implentation of hook_contentanalysis_analyzers() register contentanalysisexample with contentanalysis analyzers registry
File
- includes/
contentanalysis.inc, line 14 - Contains Content Analysis integration functions
Code
function kwresearch_contentanalysis_analyzer_info() {
$analyzers['kwresearch'] = array(
'title' => t('Keyword research'),
'module' => 'kwresearch',
'callback' => 'kwresearch_analyzer',
'form elements callback' => 'kwresearch_analyzer_form_elements',
);
return $analyzers;
}