You are here

public function views_xml_backend_plugin_query_xml::get_cache_info in Views XML Backend 7

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

Returns info to base the uniqueness of the result on.

Return value

array $cache_info Array with query unique data.

File

./views_xml_backend_plugin_query_xml.inc, line 433
Contains views_xml_backend_plugin_query_xml.

Class

views_xml_backend_plugin_query_xml
@file Contains views_xml_backend_plugin_query_xml.

Code

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