You are here

function commerce_gc_views_plugins in Commerce GC 7

File

includes/views/commerce_gc.views.inc, line 105
Provides support for the Views module.

Code

function commerce_gc_views_plugins() {
  return array(
    'argument validator' => array(
      'user_giftcards' => array(
        'title' => t('Access user giftcards list'),
        'handler' => 'commerce_gc_views_plugin_argument_validate_user_giftcards',
        'path' => drupal_get_path('module', 'commerce_gc') . '/includes/views/plugins',
      ),
    ),
  );
}