function themekey_css_rule_get in ThemeKey 7.3
Loads ThemeKey rule from database.
Parameters
$id: id of the rule to be loaded from database
Return value
the rule as associative array or NULL
1 call to themekey_css_rule_get()
- themekey_css_format_rule_as_string in themekey_css/
themekey_css.module
File
- themekey_css/
themekey_css.module, line 75
Code
function themekey_css_rule_get($id) {
return themekey_abstract_rule_get('themekey_css_rules', $id);
}