You are here

function civicrm_entity_actions_action_schedule_view_action in CiviCRM Entity 7.2

File

modules/civicrm_entity_actions/civicrm_entity_actions_action_schedule.inc, line 47

Code

function civicrm_entity_actions_action_schedule_view_action($entity, $context = array()) {
  $info = entity_get_info($context['entity_type']);
  $entity_id = $entity->{$info['entity keys']['id']};
  $base_url = str_replace('_', '-', $context['entity_type']);

  // civicrm-action_schedule
  civicrm_entity_drupal_goto($base_url . '/' . $entity_id);
}