You are here

function farm_movement_action_info in farmOS 7

Implements hook_action_info().

File

modules/farm/farm_movement/farm_movement.location.inc, line 780
Code for managing the location of assets with movement logs.

Code

function farm_movement_action_info() {
  return array(
    'farm_movement_asset_move_action' => array(
      'type' => 'farm_asset',
      'label' => t('Move'),
      'configurable' => TRUE,
      'triggers' => array(
        'any',
      ),
      'aggregate' => TRUE,
    ),
  );
}