function spaces_taxonomy_spaces_plugins in Spaces 7
Same name and namespace in other branches
- 6.3 spaces_taxonomy/spaces_taxonomy.module \spaces_taxonomy_spaces_plugins()
- 7.3 spaces_taxonomy/spaces_taxonomy.module \spaces_taxonomy_spaces_plugins()
Implements hook_spaces_plugins().
File
- spaces_taxonomy/
spaces_taxonomy.module, line 45 - spaces_taxonomy.module
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;
}