Skip to content
Snippets Groups Projects
Commit 44f22ac4 authored by Daniel Wehner's avatar Daniel Wehner Committed by Tim Plunkett
Browse files

Issue #1758632 by dawehner: Remove options() out of the code.

parent 87689a18
No related branches found
No related tags found
No related merge requests found
......@@ -92,14 +92,6 @@ function option_definition() { return array(); }
*/
function construct() { $this->set_default_options(); }
/**
* Set default options on this object. Called by the constructor in a
* complex chain to deal with backward compatibility.
*
* @deprecated since views2
*/
function options(&$options) { }
/**
* Set default options.
* For backward compatibility, it sends the options array; this is a
......@@ -107,9 +99,6 @@ function options(&$options) { }
*/
function set_default_options() {
$this->_set_option_defaults($this->options, $this->option_definition());
// Retained for complex defaults plus backward compatibility.
$this->options($this->options);
}
function _set_option_defaults(&$storage, $options, $level = 0) {
......
......@@ -40,13 +40,6 @@ class DefaultStyle extends StylePluginBase {
*/
protected $usesRowClass = TRUE;
/**
* Set default options
*/
function options(&$options) {
parent::options($options);
}
function options_form(&$form, &$form_state) {
parent::options_form($form, $form_state);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment