function system_goto_action

Same name and namespace in other branches
  1. 6.x drupal-6.x/modules/system/system.module \system_goto_action()

Redirects to a different URL.

Parameters

$entity: Ignored.

array $context: Array with the following elements:

  • 'url': URL to redirect to. This will be passed through token_replace().
  • Other elements will be used as the data for token replacement.

Related topics

2 string references to 'system_goto_action'
ActionsConfigurationTestCase::testActionConfiguration in drupal-7.x/modules/simpletest/tests/actions.test
Test the configuration of advanced actions through the administration interface.
system_action_info in drupal-7.x/modules/system/system.module
Implements hook_action_info().

Archivo

drupal-7.x/modules/system/system.module, line 3312
Configuration system that lets administrators modify the workings of the site.

Código

function system_goto_action($entity, $context) {
  drupal_goto(token_replace($context['url'], $context));
}