ConfigurableLanguageManager::$negotiator

The language negotiator. Type: \Drupal\language\LanguageNegotiatorInterface File core/modules/language/src/ConfigurableLanguageManager.php, line 55 Class ConfigurableLanguageManager Overrides default LanguageManager to provide configured languages. Namespace Drupal\language Code protected $negotiator;

FilterDisableForm::getCancelUrl

public FilterDisableForm::getCancelUrl() Returns the route to go to if the user cancels the action. Return value \Drupal\Core\Url A URL object. Overrides ConfirmFormInterface::getCancelUrl File core/modules/filter/src/Form/FilterDisableForm.php, line 24 Class FilterDisableForm Provides the filter format disable form. Namespace Drupal\filter\Form Code public function getCancelUrl() { return new Url('filter.admin_overview'); }

TrustedHostsRequestFactory

Provides a request factory for requests using host verification. Because the trusted host patterns for requests are stored statically, they are consulted even for fake request created with Request::create(), whose host is 'localhost' by default. Such requests would fail host verification unless 'localhost' matches one of the trusted host patterns. To circumvent this problem, this factory injects the server variables from the main request into each newly created request, so that the host is corr

filter-guidelines.html.twig

Default theme implementation for guidelines for a text format. Available variables: format: Contains information about the current text format, including the following: name: The name of the text format, potentially unsafe and needs to be escaped. format: The machine name of the text format, e.g. 'basic_html'. attributes: HTML attributes for the containing element. tips: Descriptions and a CSS ID in the form of 'module-name/filter-id' (only used when 'long' is TRUE) for each filter in one

BookManagerInterface::getActiveTrailIds

public BookManagerInterface::getActiveTrailIds($bid, $link) Gets the active trail IDs for the specified book at the provided path. Parameters string $bid: The Book ID to find links for. array $link: A fully loaded menu link. Return value array An array containing the active trail: a list of mlids. File core/modules/book/src/BookManagerInterface.php, line 50 Class BookManagerInterface Provides an interface defining a book manager. Namespace Drupal\book Code public function getActiveTr

DateTimePlus::$inputTimeRaw

The value of the time value passed to the constructor. File core/lib/Drupal/Component/Datetime/DateTimePlus.php, line 56 Class DateTimePlus Wraps DateTime(). Namespace Drupal\Component\Datetime Code protected $inputTimeRaw = '';

UrlGeneratorTrait::redirect

protected UrlGeneratorTrait::redirect($route_name, array $route_parameters = [], array $options = [], $status = 302) Returns a redirect response object for the specified route. Parameters string $route_name: The name of the route to which to redirect. array $route_parameters: (optional) Parameters for the route. array $options: (optional) An associative array of additional options. int $status: (optional) The HTTP redirect status code for the redirect. The default is 302 Found. Return value \

FilterUninstallValidator::getFilterDefinitionsByProvider

protected FilterUninstallValidator::getFilterDefinitionsByProvider($provider) Returns all filter definitions that are provided by the specified provider. Parameters string $provider: The provider of the filters. Return value array The filter definitions for the specified provider. File core/modules/filter/src/FilterUninstallValidator.php, line 82 Class FilterUninstallValidator Prevents uninstallation of modules providing used filter plugins. Namespace Drupal\filter Code protected fun

LinkManager::getTypeInternalIds

public LinkManager::getTypeInternalIds($type_uri, $context = array()) Get a bundle's Typed Data IDs based on a URI. Parameters string $type_uri: The type URI. array $context: Context from the normalizer/serializer operation. Return value array | boolean If the URI matches a bundle, returns an array containing entity_type and bundle. Otherwise, returns false. Overrides TypeLinkManagerInterface::getTypeInternalIds File core/modules/rest/src/LinkManager/LinkManager.php, line 44 Class LinkMan

MaintenanceModeSubscriber::$urlGenerator

The url generator. Type: \Drupal\Core\Routing\UrlGeneratorInterface File core/lib/Drupal/Core/EventSubscriber/MaintenanceModeSubscriber.php, line 52 Class MaintenanceModeSubscriber Maintenance mode subscriber for controller requests. Namespace Drupal\Core\EventSubscriber Code protected $urlGenerator;