You are here

function spaces_og_og_context_negotiation_info in Spaces 7.3

Implements hook_og_context_negotiation_info().

File

spaces_og/spaces_og.module, line 620

Code

function spaces_og_og_context_negotiation_info() {
  $providers = array();
  $providers['spaces_og'] = array(
    'name' => t('Spaces OG'),
    'description' => t("Determine context by checking spaces."),
    'callback' => 'spaces_og_og_context_handler',
  );
  return $providers;
}