function hook_skinr_skinable_hooks_alter in Skinr 8.2
Same name and namespace in other branches
- 7.2 skinr_ui.api.php \hook_skinr_skinable_hooks_alter()
Alter the list of theme_hooks that are compatible with active skins.
Parameters
$skinable_hooks: An array where keys are identical to their value. The value is a theme hook.
Related topics
1 invocation of hook_skinr_skinable_hooks_alter()
- skinr_ui_get_skinable_hooks in skinr_ui/
skinr_ui.module - Fetch all theme_hooks that are compatible with active skins.
File
- skinr_ui/
skinr_ui.api.php, line 76 - This file contains no working PHP code; it exists to provide additional documentation for doxygen as well as to document hooks in the standard Drupal manner.
Code
function hook_skinr_skinable_hooks_alter(&$skinable_hooks) {
$skinable_hooks['block__custom'] = 'block__custom';
}