1.20.x system.module system_authorized_get_url(array $options = array())

Return the URL for the authorize.php script.

Parameters

array $options: Optional array of options to pass to url().

Return value

The full URL to authorize.php, using HTTPS if available.:

See also

system_authorized_init()

Related topics

File

modules/system/system.module, line 2224
Configuration system that lets administrators modify the workings of the site.

Code

function system_authorized_get_url(array $options = array()) {
  global $base_url;
  // Force HTTPS if available, regardless of what the caller specifies.
  $options['https'] = TRUE;
  // We prefix with $base_url so we get a full path even if clean URLs are
  // disabled.
  return url($base_url . '/core/authorize.php', $options);
}