function spaces_customtext_spaces_plugins in Spaces 7
Same name and namespace in other branches
- 6.3 spaces_customtext/spaces_customtext.module \spaces_customtext_spaces_plugins()
- 7.3 spaces_customtext/spaces_customtext.module \spaces_customtext_spaces_plugins()
Implements hook_spaces_plugins().
File
- spaces_customtext/
spaces_customtext.module, line 96 - Spaces Custom Text.
Code
function spaces_customtext_spaces_plugins() {
return array(
'spaces_controller_customtext' => array(
'handler' => array(
'path' => drupal_get_path('module', 'spaces_customtext') . '/plugins',
'file' => 'spaces_controller_customtext.inc',
'class' => 'spaces_controller_customtext',
'parent' => 'spaces_controller_variable',
),
),
);
}