You are here

function views_xml_backend_plugin_query_xml::get_cache_info in Views XML Backend 6

Same name and namespace in other branches
  1. 7 views_xml_backend_plugin_query_xml.inc \views_xml_backend_plugin_query_xml::get_cache_info()

Return info to base the uniqueness of the result on.

Return value

$cache_info Array with query unique data.

Overrides views_plugin_query::get_cache_info

File

./views_xml_backend_plugin_query_xml.inc, line 341
Query plugin for views_xml_backend.

Class

views_xml_backend_plugin_query_xml
@file Query plugin for views_xml_backend.

Code

function get_cache_info() {
  return array(
    'xml_file' => $this->options['xml_file'],
    'row_xpath' => $this->options['row_xpath'],
    'default_namespace' => $this->options['default_namespace'],
  );
}