You are here

function civicrm_entity_actions_action_schedule_action_info in CiviCRM Entity 7.2

Return value

multitype:multitype:string boolean NULL

File

modules/civicrm_entity_actions/civicrm_entity_actions_action_schedule.inc, line 8

Code

function civicrm_entity_actions_action_schedule_action_info() {
  return array(
    //Crud operations
    'civicrm_entity_actions_action_schedule_view_action' => array(
      'type' => 'civicrm_action_schedule',
      'label' => t('View Action_schedule'),
      'configurable' => FALSE,
      'behavior' => array(
        'views_property',
      ),
      'triggers' => array(
        'any',
      ),
    ),
    'civicrm_entity_actions_action_schedule_add_action' => array(
      'type' => 'civicrm_action_schedule',
      'label' => t('Add Action_schedule'),
      'configurable' => FALSE,
      'behavior' => array(
        'creates_property',
      ),
      'triggers' => array(
        'any',
      ),
    ),
    'civicrm_entity_actions_action_schedule_edit_action' => array(
      'type' => 'civicrm_action_schedule',
      'label' => t('Edit Action_schedule'),
      'configurable' => FALSE,
      'behavior' => array(
        'changes_property',
      ),
      'triggers' => array(
        'any',
      ),
    ),
    'civicrm_entity_actions_action_schedule_delete_action' => array(
      'type' => 'civicrm_action_schedule',
      'label' => t('Delete Action_schedule'),
      'configurable' => FALSE,
      'behavior' => array(
        'deletes_property',
      ),
      'triggers' => array(
        'any',
      ),
    ),
  );
}