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