You are here

protected function Xml::defineOptions in Views XML Backend 8

Information about options for all kinds of purposes will be held here.


'option_name' => array(
 - 'default' => default value,
 - 'contains' => (optional) array of items this contains, with its own
     defaults, etc. If contains is set, the default will be ignored and
     assumed to be array().
 ),

Return value

array Returns the options of this handler/plugin.

Overrides PluginBase::defineOptions

File

src/Plugin/views/query/Xml.php, line 156
Contains \Drupal\views_xml_backend\Plugin\views\query\Xml.

Class

Xml
Views query plugin for an XML query.

Namespace

Drupal\views_xml_backend\Plugin\views\query

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['xml_file']['default'] = '';
  $options['row_xpath']['default'] = '';
  $options['default_namespace']['default'] = 'default';
  $options['show_errors']['default'] = TRUE;
  return $options;
}