You are here

function export_doc_action_info in Export document 7

Implements hook_action_info().

File

./export_doc.module, line 34
The main file of export_doc.

Code

function export_doc_action_info() {
  return array(
    'export_doc_export_action' => array(
      'type' => 'node',
      'label' => t('Export node to Word'),
      'configurable' => TRUE,
      'aggregate' => TRUE,
    ),
  );
}