system_goto_action

Versions
mediamosa-21
system_goto_action($entity, $context)

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

Code

modules/system/system.module, line 3041

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