You are here

function clients_views_views_plugins in Web Service Clients 7

Same name and namespace in other branches
  1. 6 clients/clients_views/clients_views.module \clients_views_views_plugins()

Implementation of hook_views_plugins

File

clients/clients_views/clients_views.module, line 68
Client for Views

Code

function clients_views_views_plugins() {
  return array(
    'module' => 'clients_views',
    'query' => array(
      'clientsQuery' => array(
        'title' => t('Clients'),
        'help' => t('Clients.'),
        'handler' => 'clientsQuery',
        'parent' => 'views_query',
      ),
    ),
  );
}