You are here

function civicrm_entity_actions_country_action_info in CiviCRM Entity 7.2

Return value

multitype:multitype:string boolean NULL

File

modules/civicrm_entity_actions/civicrm_entity_actions_country.inc, line 8

Code

function civicrm_entity_actions_country_action_info() {
  return array(
    //Crud operations
    'civicrm_entity_actions_country_view_action' => array(
      'type' => 'civicrm_country',
      'label' => t('View Country'),
      'configurable' => FALSE,
      'behavior' => array(
        'views_property',
      ),
      'triggers' => array(
        'any',
      ),
    ),
    'civicrm_entity_actions_country_add_action' => array(
      'type' => 'civicrm_country',
      'label' => t('Add Country'),
      'configurable' => FALSE,
      'behavior' => array(
        'creates_property',
      ),
      'triggers' => array(
        'any',
      ),
    ),
    'civicrm_entity_actions_country_edit_action' => array(
      'type' => 'civicrm_country',
      'label' => t('Edit Country'),
      'configurable' => FALSE,
      'behavior' => array(
        'changes_property',
      ),
      'triggers' => array(
        'any',
      ),
    ),
    'civicrm_entity_actions_country_delete_action' => array(
      'type' => 'civicrm_country',
      'label' => t('Delete Country'),
      'configurable' => FALSE,
      'behavior' => array(
        'deletes_property',
      ),
      'triggers' => array(
        'any',
      ),
    ),
  );
}