You are here

function apachesolr_views_views_plugins in Apache Solr Views 7

Same name and namespace in other branches
  1. 6 apachesolr_views.views.inc \apachesolr_views_views_plugins()

Implements of hook_views_plugins().

File

./apachesolr_views.views.inc, line 11
Contains Views hooks to register Views plugins and handlers.

Code

function apachesolr_views_views_plugins() {
  return array(
    'module' => 'apachesolr_views',
    'query' => array(
      'apachesolr_views_query' => array(
        'title' => t('Apache Solr Query'),
        'help' => t('Query that allows you to search with Apache Solr.'),
        'handler' => 'apachesolr_views_query',
        'parent' => 'views_query',
      ),
    ),
  );
}