You are here

function vms_views_plugins in Views Menu Support 7

Same name and namespace in other branches
  1. 8 vms.views.inc \vms_views_plugins()

Implements hook_views_plugins().

File

./vms.views.inc, line 10
Declares the Views plugin for inheriting argument value.

Code

function vms_views_plugins() {
  return array(
    'argument default' => array(
      'vms_current_mlid' => array(
        'title' => t('Currently active menu item link ID'),
        'handler' => 'vms_plugin_argument_default_mlid',
      ),
    ),
  );
}