You are here

function views_plugin_style_atom_delete::option_definition in Views Atom 6

Same name and namespace in other branches
  1. 7 views_plugin_style_atom_delete.inc \views_plugin_style_atom_delete::option_definition()

File

views/views_plugin_style_atom_delete.inc, line 21
Style plugin for an Atom feed using the Tombstone specification for entry deletion.

Class

views_plugin_style_atom_delete
@file Style plugin for an Atom feed using the Tombstone specification for entry deletion.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['guid'] = array(
    'use_feed' => array(
      'default' => array(),
    ),
  );
  return $options;
}