You are here

function spaces_get_space in Spaces 6.2

Same name and namespace in other branches
  1. 5.2 spaces.module \spaces_get_space()
  2. 6.3 spaces.module \spaces_get_space()
  3. 6 spaces.module \spaces_get_space()
  4. 7.3 spaces.module \spaces_get_space()
  5. 7 spaces.module \spaces_get_space()

Wrapper function around spaces_set_space(). Retrieves the current active space.

23 calls to spaces_get_space()
spaces_admin_access in ./spaces.module
Menu admin access wrapper.
spaces_admin_links in ./spaces.module
Generates an array of admin links for the current space suitable for use in theme_links().
spaces_basic_form in ./spaces_admin.inc
BASIC FORM =========================================================
spaces_context_active_contexts_alter in ./spaces.module
Implementation of hook_context_active_contexts_alter().
spaces_customize_form in ./spaces_admin.inc
Feature customization form.

... See full list

File

./spaces.module, line 884

Code

function spaces_get_space() {
  return spaces_set_space();
}