You are here

function alchemy_contentanalysis_contentanalysis_analyzer_info in Alchemy 7

Implentation of hook_contentanalysis_analyzers() register kwanalysis with contentanalysis analyzers registry

File

modules/alchemy_contentanalysis/alchemy_contentanalysis.module, line 31

Code

function alchemy_contentanalysis_contentanalysis_analyzer_info() {
  $analyzers['alchemy'] = array(
    'title' => t('Alchemy'),
    'module' => 'alchemy_contentanalysis',
    'callback' => 'alchemy_contentanalysis_analyzer',
    'form elements callback' => 'alchemy_contentanalysis_analyzer_form_elements',
  );
  return $analyzers;
}