function hook_entity_background_selectors_alter in Entity background 7
Alter the selector items.
Parameters
array $selectors: An array of selector classes.
See also
2 functions implement hook_entity_background_selectors_alter()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- entity_background_entity_background_selectors_alter in ./
entity_background.module - Implements hook_entity_background_selectors_alter().
- entity_background_test_entity_background_selectors_alter in tests/
entity_background_test/ entity_background_test.module - Implements hook_entity_background_selectors_alter().
File
- ./
entity_background.api.php, line 16 - API documentation for the entity_background module.
Code
function hook_entity_background_selectors_alter(&$selectors) {
$selectors['node'] = 'custom-node-';
}