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