function tripal_views_plugins

3.x tripal.views.inc tripal_views_plugins()

Implements of hook_views_plugins().

File

tripal/tripal.views.inc, line 10
Integrates many of the core database tables with drupal views

Code

function tripal_views_plugins() {
  return array(
    'module' => 'tripal',
    'query' => array(
      'tripal_views_query' => array(
        'title' => t('Tripal Entity Query'),
        'help' => t('Query that allows you to search with Tripal entities.'),
        'handler' => 'tripal_views_query',
        'parent' => 'views_query',
      ),
    ),
  );
}