| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/business/sites/all/modules/views/plugins/ |
Upload File : |
<?php
/**
* @file
* Definition of views_plugin_display_extender.
*/
/**
* @todo.
*
* @ingroup views_display_plugins
*/
class views_plugin_display_extender extends views_plugin {
/**
* {@inheritdoc}
*/
public function init(&$view, &$display) {
$this->view = $view;
$this->display = $display;
}
/**
* Provide a form to edit options for this plugin.
*/
public function options_definition_alter(&$options) {
}
/**
* Provide a form to edit options for this plugin.
*/
public function options_form(&$form, &$form_state) {
}
/**
* Validate the options form.
*/
public function options_validate(&$form, &$form_state) {
}
/**
* Handle any special handling on the validate form.
*/
public function options_submit(&$form, &$form_state) {
}
/**
* Set up any variables on the view prior to execution.
*/
public function pre_execute() {
}
/**
* Inject anything into the query that the display_extender handler needs.
*/
public function query() {
}
/**
* Provide the default summary for options in the views UI.
*
* This output is returned as an array.
*/
public function options_summary(&$categories, &$options) {
}
/**
* Static member function to list which sections are defaultable
* and what items each section contains.
*/
public function defaultable_sections(&$sections, $section = NULL) {
}
}