function themekey_dummy2day_of_week in ThemeKey 7.3
Same name and namespace in other branches
- 7 modules/themekey.system.inc \themekey_dummy2day_of_week()
- 7.2 modules/themekey.system.inc \themekey_dummy2day_of_week()
ThemeKey mapping function to set a ThemeKey property's value (destination) with the aid of another ThemeKey property (source).
src: system:dummy dst: system:day_of_week
Parameters
$dummy: string containing current value of ThemeKey property system:dummy
Return value
current day of the week as three letters from "Mon" through "Sun"
1 string reference to 'themekey_dummy2day_of_week'
- themekey_system_themekey_properties in modules/
themekey.system.inc - Implements hook_themekey_properties().
File
- modules/
themekey.system.inc, line 713 - Provides some ThemeKey properties.
Code
function themekey_dummy2day_of_week($dummy) {
return format_date(time(), 'custom', 'D', variable_get('date_default_timezone', 0), 'en');
}