Display::buildForm

public Display::buildForm(array $form, FormStateInterface $form_state) Form constructor. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Return value array The form structure. Overrides FormInterface::buildForm File core/modules/views_ui/src/Form/Ajax/Display.php, line 57 Class Display Provides a form for editing the Views display. Namespace Drupal\views_ui\Form\Ajax Co

Display

Provides a form for editing the Views display. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\views_ui\Form\Ajax\ViewsFormBase implements ViewsFormInterfaceclass \Drupal\views_ui\Form\Ajax\Display File core/modules/views_ui/src/Form/Ajax/Display.php, line 11 Namespace Drupal\views_ui

DiscoveryException

Exception thrown during discovery if the data is invalid. Hierarchy class \Drupal\Component\Discovery\DiscoveryException extends \RuntimeException File core/lib/Drupal/Component/Discovery/DiscoveryException.php, line 8 Namespace Drupal\Component\Discovery Members

DiscoverableInterface::findAll

public DiscoverableInterface::findAll() Returns an array of discoverable items. Return value array An array of discovered data keyed by provider. Throws \Drupal\Component\Discovery\DiscoveryException Exception thrown if there is a problem during discovery. File core/lib/Drupal/Component/Discovery/DiscoverableInterface.php, line 19 Class DiscoverableInterface Interface for classes providing a type of discovery. Namespace Drupal\Component\Discovery Code public function findAll();

DiscoverableInterface

Interface for classes providing a type of discovery. Hierarchy interface \Drupal\Component\Discovery\DiscoverableInterface File core/lib/Drupal/Component/Discovery/DiscoverableInterface.php, line 8 Namespace Drupal\Component\Discovery Members Name Modifiers Type Description DiscoverableInterface::findAll public function Returns an array of discoverable items.

DisallowBasicAuthRequests::check

public DisallowBasicAuthRequests::check(Request $request) Determines whether delivery of a cached page should be attempted. Note that the request-policy check runs very early. In particular it is not possible to determine the logged in user. Also the current route match is not yet present when the check runs. Therefore, request-policy checks need to be designed in a way such that they do not depend on any other service and only take in account the information present on the incoming request. Wh

DisallowBasicAuthRequests

Cache policy for pages served from basic auth. This policy disallows caching of requests that use basic_auth for security reasons. Otherwise responses for authenticated requests can get into the page cache and could be delivered to unprivileged users. Hierarchy class \Drupal\basic_auth\PageCache\DisallowBasicAuthRequests implements RequestPolicyInterface File core/modules/basic_auth/src/PageCache/DisallowBasicAuthRequests.php, line 15 Namespace Drupal\basic_auth\PageCache Members Name

DiffOpDelete::__construct

public DiffOpDelete::__construct($lines) File core/lib/Drupal/Component/Diff/Engine/DiffOpDelete.php, line 13 Class DiffOpDelete @todo document @private @subpackage DifferenceEngine Namespace Drupal\Component\Diff\Engine Code public function __construct($lines) { $this->orig = $lines; $this->closing = FALSE; }

DiffOpDelete::reverse

public DiffOpDelete::reverse() Overrides DiffOp::reverse File core/lib/Drupal/Component/Diff/Engine/DiffOpDelete.php, line 18 Class DiffOpDelete @todo document @private @subpackage DifferenceEngine Namespace Drupal\Component\Diff\Engine Code public function reverse() { return new DiffOpAdd($this->orig); }

DiffOpDelete::$type

Overrides DiffOp::$type File core/lib/Drupal/Component/Diff/Engine/DiffOpDelete.php, line 11 Class DiffOpDelete @todo document @private @subpackage DifferenceEngine Namespace Drupal\Component\Diff\Engine Code public $type = 'delete';