function themekey_css_format_rule_as_string in ThemeKey 7.3
1 call to themekey_css_format_rule_as_string()
- themekey_css_admin_delete_rule_confirm in themekey_css/
themekey_css_admin.inc - Menu callback -- ask for confirmation of ThemeKey rule deletion
1 string reference to 'themekey_css_format_rule_as_string'
- themekey_css_init in themekey_css/
themekey_css.module - Implements hook_init().
File
- themekey_css/
themekey_css.module, line 55
Code
function themekey_css_format_rule_as_string($themekey_property_id) {
module_load_include('inc', 'themekey', 'themekey_build');
return themekey_abstract_format_rule_as_string($themekey_property_id, array(
'rule' => themekey_css_rule_get($themekey_property_id),
));
}