You are here

function tmgmt_node_ui_action_info in Translation Management Tool 7

Implements hook_action_info().

File

sources/node/ui/tmgmt_node_ui.module, line 32
Main module file for the translation management node source plugin user interface.

Code

function tmgmt_node_ui_action_info() {
  return array(
    'tmgmt_node_ui_checkout_multiple_action' => array(
      'type' => 'node',
      'label' => t('Request translations'),
      'configurable' => false,
      'aggregate' => true,
    ),
  );
}