You are here

function spaces_og_purl_provider in Spaces 6.3

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

Implementation of hook_purl_provider().

File

spaces_og/spaces_og.module, line 45

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;
}