function payment_views_plugins in Payment 7
Implements hook_views_plugins().
File
- views/
payment.views.inc, line 408 - Views integration.
Code
function payment_views_plugins() {
$plugins = array();
$plugins['access']['payment_own_payment_overview'] = array(
'title' => t('People with the <em>View any payment</em> permission and people who own the payments'),
'handler' => 'PaymentViewsHandlerAccessOwnPaymentOverview',
);
return $plugins;
}