You are here

function themekey_redirect_themekey_disabled_paths in ThemeKey 7.3

Same name in this branch
  1. 7.3 docs/themekey.api.php \themekey_redirect_themekey_disabled_paths()
  2. 7.3 themekey_redirect/themekey_redirect.module \themekey_redirect_themekey_disabled_paths()

Implements hook_themekey_disabled_paths().

File

themekey_redirect/themekey_redirect.module, line 114
Define rules to redirect the user to a different domain. The common use-case is to setup sub-domains for mobile sites. In this case you can configure ThemeKey Redirect to detect mobile clients and redirect the user accordingly. In ThemeKey itself you…

Code

function themekey_redirect_themekey_disabled_paths() {
  return array(
    'themekey/redirect_callback',
  );
}