You are here

function insight_node_operations in Insight 7

Implements hook_node_operations().

1 call to insight_node_operations()
insight_page_report_pages in ./insight.page_reports.inc
Form builder: Builds the node administration overview.

File

./insight.module, line 830

Code

function insight_node_operations() {
  $operations['insight_contentanalysis_analyze'] = array(
    'label' => t('Analyze selected content'),
    'callback' => 'insight_contentanalysis_autoanalyze_nodes',
    'callback arguments' => array(
      'bulkupdate',
      array(
        'message' => TRUE,
      ),
    ),
  );
  return $operations;
}