AuthenticationManager

Manager for authentication. On each request, let all authentication providers try to authenticate the user. The providers are iterated according to their priority and the first provider detecting credentials for its method wins. No further provider will get triggered. If no provider set an active user then the user is set to anonymous. Hierarchy class \Drupal\Core\Authentication\AuthenticationManager implements AuthenticationProviderChallengeInterface, AuthenticationProviderFilterInterface, Aut

AddHandler::getFormKey

public AddHandler::getFormKey() Returns the key that represents this form. Return value string The form key used in the URL, e.g., the string 'add-handler' in 'admin/structure/views/%/add-handler/%/%/%'. Overrides ViewsFormInterface::getFormKey File core/modules/views_ui/src/Form/Ajax/AddHandler.php, line 25 Class AddHandler Provides a form for adding an item in the Views UI. Namespace Drupal\views_ui\Form\Ajax Code public function getFormKey() { return 'add-handler'; }

Analyze::getFormId

public Analyze::getFormId() Returns a unique string identifying the form. Return value string The unique string identifying the form. Overrides FormInterface::getFormId File core/modules/views_ui/src/Form/Ajax/Analyze.php, line 23 Class Analyze Displays analysis information for a view. Namespace Drupal\views_ui\Form\Ajax Code public function getFormId() { return 'views_ui_analyze_view_form'; }

FormAjaxResponseBuilder::$ajaxRenderer

The main content to AJAX Response renderer. Type: \Drupal\Core\Render\MainContent\MainContentRendererInterface File core/lib/Drupal/Core/Form/FormAjaxResponseBuilder.php, line 25 Class FormAjaxResponseBuilder Builds an AJAX form response. Namespace Drupal\Core\Form Code protected $ajaxRenderer;

Analyze::getFormKey

public Analyze::getFormKey() Returns the key that represents this form. Return value string The form key used in the URL, e.g., the string 'add-handler' in 'admin/structure/views/%/add-handler/%/%/%'. Overrides ViewsFormInterface::getFormKey File core/modules/views_ui/src/Form/Ajax/Analyze.php, line 16 Class Analyze Displays analysis information for a view. Namespace Drupal\views_ui\Form\Ajax Code public function getFormKey() { return 'analyze'; }

StorageReplaceDataWrapper

Wraps a configuration storage to allow replacing specific configuration data. Hierarchy class \Drupal\config\StorageReplaceDataWrapper implements StorageInterface uses DependencySerializationTrait File core/modules/config/src/StorageReplaceDataWrapper.php, line 11 Namespace Drupal\config Members Name Modifiers Type Description DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization. DependencyS

ArgumentsResolverInterface::getArguments

public ArgumentsResolverInterface::getArguments(callable $callable) Gets arguments suitable for passing to the given callable. Return value array An array of arguments to pass to the callable. Throws \RuntimeException When a value for an argument given cannot be resolved. File core/lib/Drupal/Component/Utility/ArgumentsResolverInterface.php, line 19 Class ArgumentsResolverInterface Resolves the arguments to pass to a callable. Namespace Drupal\Component\Utility Code public function g

ConfigHandler::getForm

public ConfigHandler::getForm(ViewEntityInterface $view, $display_id, $js, $type = NULL, $id = NULL) Creates a new instance of this form. @todo When https://www.drupal.org/node/1843224 is in, this will return \Drupal\Core\Ajax\AjaxResponse instead of the array of AJAX commands. Parameters \Drupal\views\ViewEntityInterface $view: The view being edited. string|null $display_id: The display ID being edited, or NULL to load the first available display. string $js: If this is an AJAX form, it will

MTimeProtectedFileStorage::exists

public MTimeProtectedFileStorage::exists($name) Checks whether the PHP code exists in storage. Parameters string $name: The virtual file name. Can be a relative path. Return value bool TRUE if the virtual file exists, FALSE otherwise. Overrides FileStorage::exists File core/lib/Drupal/Component/PhpStorage/MTimeProtectedFileStorage.php, line 48 Class MTimeProtectedFileStorage Stores PHP code in files with securely hashed names. Namespace Drupal\Component\PhpStorage Code public functio

ConfigHandler::validateForm

public ConfigHandler::validateForm(array &$form, FormStateInterface $form_state) Form validation handler. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Overrides ViewsFormBase::validateForm File core/modules/views_ui/src/Form/Ajax/ConfigHandler.php, line 192 Class ConfigHandler Provides a form for configuring an item in the Views UI. Namespace Drupal\views_ui\Form\A