function spaces_og_spaces_plugins in Spaces 7
Same name and namespace in other branches
- 6.3 spaces_og/spaces_og.module \spaces_og_spaces_plugins()
- 7.3 spaces_og/spaces_og.module \spaces_og_spaces_plugins()
Implements hook_spaces_plugins().
File
- spaces_og/
spaces_og.module, line 67
Code
function spaces_og_spaces_plugins() {
$plugins = array();
$plugins['space_og'] = array(
'handler' => array(
'path' => drupal_get_path('module', 'spaces_og') . '/plugins',
'file' => 'space_og.inc',
'class' => 'space_og',
'parent' => 'space_type_purl',
),
);
return $plugins;
}