<?php/**
* @file
* Definition of Drupal\views\Plugin\views\display_extender\DisplayExtenderPluginBase.
*/namespaceDrupal\views\Plugin\views\display_extender;
useDrupal\views\ViewExecutable;
useDrupal\views\Plugin\views\PluginBase;
useDrupal\Core\Annotation\Translation;
/**
* @todo.
*
* @ingroup views_display_plugins
*/
abstract class DisplayExtenderPluginBaseextends PluginBase {
/**
* Provide a form to edit options for this plugin.
*/
public functiondefineOptionsAlter(&$options) {
}
/**
* Provide a form to edit options for this plugin.
*/
public functionbuildOptionsForm(&$form, &$form_state) {
}
/**
* Validate the options form.
*/
public functionvalidateOptionsForm(&$form, &$form_state) {
}
/**
* Handle any special handling on the validate form.
*/
public functionsubmitOptionsForm(&$form, &$form_state) {
}
/**
* Set up any variables on the view prior to execution.
*/
public functionpreExecute() {
}
/**
* Inject anything into the query that the display_extender handler needs.
*/
public functionquery() {
}
/**
* Provide the default summary for options in the views UI.
*
* This output is returned as an array.
*/
public functionoptionsSummary(&$categories, &$options) {
}
/**
* Static member function to list which sections are defaultable
* and what items each section contains.
*/
public functiondefaultableSections(&$sections, $section = NULL) {
}
}