function spaces_context_define in Spaces 5
Same name and namespace in other branches
- 5.2 spaces.module \spaces_context_define()
Implementation of hook_context_define()
hook_context_define provides a central method to define contextual behavior. The spaces module extends this hook in the "spaces" key namespace. Available attributes are: 'label', 'description', 'options', 'options_function', '#weight'
Return value
Keyed array which defines features.
File
- ./
spaces.module, line 177
Code
function spaces_context_define() {
$items = array();
return $items;
}