You are here

function _nd_plugins in Node displays 6

Return nd plugins.

1 call to _nd_plugins()
nd_nd_plugins in ./nd.module
Implementation of hook_nd_plugins().

File

includes/nd.registry.inc, line 215
Registry functions.

Code

function _nd_plugins() {
  $path = drupal_get_path('module', 'nd');
  return array(
    'emptyregionrender' => array(
      'title' => t('Empty region'),
      'description' => t('Renders a region when there is no content in it.'),
      'file' => 'emptyregionrender.inc',
      'path' => $path . '/plugins',
    ),
    'cssoverrider' => array(
      'title' => t('Simple CSS overrider'),
      'description' => t('Override region CSS with inline styles or add extra classes.'),
      'file' => 'cssoverrider.inc',
      'path' => $path . '/plugins',
    ),
  );
}