You are here

function nodehierarchy_views_plugins in Node Hierarchy 6.2

Implementation of hook_views_plugins()

File

includes/views/nodehierarchy.views.inc, line 10
Implementations of Views 2 Hooks for nodehierarchy_views module

Code

function nodehierarchy_views_plugins() {
  return array(
    'argument default' => array(
      'nodehierarchy' => array(
        'title' => t('Ancestor Depth'),
        'handler' => 'views_plugin_argument_default_nodehierarchy',
        'path' => drupal_get_path('module', 'nodehierarchy') . '/includes/views',
        // not necessary for most modules
        'parent' => 'fixed',
      ),
    ),
  );
}