function insight_autoanalyze_node_operation in Insight 7
1 string reference to 'insight_autoanalyze_node_operation'
- insight_menu in ./
insight.module - Implements hook.().
File
- ./
insight.reports.inc, line 91
Code
function insight_autoanalyze_node_operation($node) {
insight_contentanalysis_autoanalyze($node->nid);
$msg = t('@node content was analyzed.', array(
'@nid' => l($node->title, 'node/' . $node->nid),
));
drupal_goto($_GET['destination']);
}