function themekey_dummy2query_string in ThemeKey 7.3
Same name and namespace in other branches
- 7 modules/themekey.system.inc \themekey_dummy2query_string()
- 7.2 modules/themekey.system.inc \themekey_dummy2query_string()
ThemeKey mapping function to set a ThemeKey property's value (destination) with the aid of another ThemeKey property (source).
src: system:dummy dst: system:query_string
Parameters
$dummy: string containing current value of ThemeKey property system:dummy
Return value
system:query_string as string or NULL if no value could be mapped
1 string reference to 'themekey_dummy2query_string'
- themekey_system_themekey_properties in modules/
themekey.system.inc - Implements hook_themekey_properties().
File
- modules/
themekey.system.inc, line 500 - Provides some ThemeKey properties.
Code
function themekey_dummy2query_string($dummy) {
$query_string = themekey_query_string();
return $query_string ? $query_string : NULL;
}