You are here

function views_xml_backend_views_plugins in Views XML Backend 7

Same name and namespace in other branches
  1. 6 views_xml_backend.views.inc \views_xml_backend_views_plugins()

Implements hook_views_plugins().

File

./views_xml_backend.views.inc, line 90
Views hooks for views_xml_backend.

Code

function views_xml_backend_views_plugins() {
  return array(
    'query' => array(
      'views_xml_backend' => array(
        'title' => t('XML'),
        'help' => t('Reads from an XML file.'),
        'handler' => 'views_xml_backend_plugin_query_xml',
      ),
    ),
  );
}