function spaces_get_space in Spaces 5.2
Same name and namespace in other branches
- 6.3 spaces.module \spaces_get_space()
- 6 spaces.module \spaces_get_space()
- 6.2 spaces.module \spaces_get_space()
- 7.3 spaces.module \spaces_get_space()
- 7 spaces.module \spaces_get_space()
Wrapper function around spaces_set_space(). Retrieves the current active space.
35 calls to spaces_get_space()
- spaces_announce_form_alter in spaces_announce/
spaces_announce.module - Implementation of hook_form_alter.
- spaces_announce_group_save in spaces_announce/
spaces_announce.module - After build handler for announcement node forms.
- spaces_announce_nodeapi in spaces_announce/
spaces_announce.module - Implementation of hook_nodeapi
- spaces_casetracker_block in spaces_casetracker/
spaces_casetracker.module - Implementation of hook_block()
- spaces_casetracker_form_alter in spaces_casetracker/
spaces_casetracker.module - Implementation of hook_form_alter()
File
- ./
spaces.module, line 847
Code
function spaces_get_space() {
return spaces_set_space();
}