function commerce_file_views_plugins in Commerce File 7
Implements hook_views_plugins
File
- views/
commerce_file.views.inc, line 520 - Export Drupal Commerce file licenses to Views.
Code
function commerce_file_views_plugins() {
return array(
'argument validator' => array(
'commerce_file_user' => array(
'title' => t('Commerce File User'),
'handler' => 'commerce_file_plugin_argument_validate_user',
'path' => drupal_get_path('module', 'commerce_file') . '/views/handlers',
),
),
);
}