You are here

function spaces_og_purl_provider in Spaces 7

Same name and namespace in other branches
  1. 6.3 spaces_og/spaces_og.module \spaces_og_purl_provider()
  2. 7.3 spaces_og/spaces_og.module \spaces_og_purl_provider()

Implements hook_purl_provider().

File

spaces_og/spaces_og.module, line 52

Code

function spaces_og_purl_provider() {
  $items = array();
  $items["spaces_og"] = array(
    'name' => t('Group space'),
    'description' => t('Sets a space as the active space.'),
    'callback' => 'spaces_init_space',
    'callback arguments' => array(
      'og',
    ),
    'example' => 'my-space',
  );
  return $items;
}