You are here

function _logouttab_redirect_url in Logout Tab 6

Same name and namespace in other branches
  1. 7 logouttab.module \_logouttab_redirect_url()

Redirects user to defined page.

1 string reference to '_logouttab_redirect_url'
logouttab_menu in ./logouttab.module
Implementation of hook_menu().

File

./logouttab.module, line 32
Adds a logout tab to the profile area.

Code

function _logouttab_redirect_url() {
  drupal_goto(variable_get('logouttab_url', 'logout'));
}