You are here

function clients_views_views_plugins in Web Service Clients 6

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

Implementation of hook_views_plugins

File

clients/clients_views/clients_views.module, line 69
Client for Views @author Django Beatty

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',
      ),
    ),
  );
}