function hook_themekey_rebuild in ThemeKey 7.3
By implementing hook_themekey_rebuild() you can trigger own actions when themekey_rebuild() is called.
1 function implements hook_themekey_rebuild()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- themekey_css_themekey_rebuild in themekey_css/
themekey_css.module - Implements hook_themekey_rebuild().
1 invocation of hook_themekey_rebuild()
- themekey_rebuild in ./
themekey_build.inc - Rebuilds all ThemeKey-related Drupal variables by calling the hooks:
File
- docs/
themekey.api.php, line 127 - ThemeKey API documentation
Code
function hook_themekey_rebuild() {
module_load_include('inc', 'themekey_css', 'themekey_css_build');
themekey_css_scan();
}