function pay_views_plugins in Pay 6
Same name and namespace in other branches
- 7 includes/views/pay.views.inc \pay_views_plugins()
Implementation of hook_views_plugins().
File
- includes/
views/ pay.views.inc, line 536 - Views functionality for the Payment API
Code
function pay_views_plugins() {
return array(
'argument default' => array(
'pay_form' => array(
'title' => t('Payment form ID from URL'),
'handler' => 'pay_handler_argument_default_form',
'path' => drupal_get_path('module', 'pay') . '/includes/views',
'parent' => 'fixed',
),
),
);
}