You are here

function farm_livestock_weight_action_info in farmOS 7

Implements hook_action_info().

File

modules/farm/farm_livestock/farm_livestock_weight/farm_livestock_weight.module, line 1020
Farm livestock weight module.

Code

function farm_livestock_weight_action_info() {
  return array(
    'farm_livestock_weight_action' => array(
      'type' => 'farm_asset',
      'label' => t('Weight'),
      'configurable' => TRUE,
      'triggers' => array(
        'any',
      ),
      'aggregate' => TRUE,
    ),
  );
}