You are here

function spaces_taxonomy_spaces_plugins in Spaces 6.3

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

Implementation of hook_spaces_plugins().

File

spaces_taxonomy/spaces_taxonomy.module, line 39

Code

function spaces_taxonomy_spaces_plugins() {
  $plugins = array();
  $plugins['space_taxonomy'] = array(
    'handler' => array(
      'path' => drupal_get_path('module', 'spaces_taxonomy') . '/plugins',
      'file' => 'space_taxonomy.inc',
      'class' => 'space_taxonomy',
      'parent' => 'space_type_purl',
    ),
  );
  return $plugins;
}