function themekey_locale_themekey_global in ThemeKey 6.3
Same name and namespace in other branches
- 6.4 modules/themekey.locale.inc \themekey_locale_themekey_global()
- 6 modules/themekey.locale.inc \themekey_locale_themekey_global()
- 6.2 modules/themekey.locale.inc \themekey_locale_themekey_global()
- 7.3 modules/themekey.locale.inc \themekey_locale_themekey_global()
- 7 modules/themekey.locale.inc \themekey_locale_themekey_global()
- 7.2 modules/themekey.locale.inc \themekey_locale_themekey_global()
Implements hook_themekey_paths().
File
- modules/
themekey.locale.inc, line 41 - Provides some node attributes as ThemeKey properties.
Code
function themekey_locale_themekey_global() {
global $language;
$parameters = array();
$parameters['locale:language'] = !empty($language->language) ? $language->language : NULL;
return $parameters;
}