You are here

function merci_views_plugins in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.2

Same name and namespace in other branches
  1. 6.2 merci.views.inc \merci_views_plugins()

@todo Please document this function.

See also

http://drupal.org/node/1354

File

./merci.views.inc, line 512
Expose MERCI information to Views.

Code

function merci_views_plugins() {
  return array(
    'module' => 'views',
    // This just tells our themes are elsewhere.
    'argument validator' => array(
      'merci' => array(
        'title' => t('MERCI'),
        'handler' => 'views_plugin_argument_validate_merci_node',
        'path' => drupal_get_path('module', 'merci'),
      ),
    ),
  );
}