You are here

function spaces_customtext_spaces_plugins in Spaces 6.3

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

Implementation of hook_spaces_plugins().

File

spaces_customtext/spaces_customtext.module, line 92
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',
      ),
    ),
  );
}