UnroutedUrlAssembler::buildLocalUrl

protected UnroutedUrlAssembler::buildLocalUrl($uri, array $options = [], $collect_bubbleable_metadata = FALSE) File core/lib/Drupal/Core/Utility/UnroutedUrlAssembler.php, line 101 Class UnroutedUrlAssembler Provides a way to build external or non Drupal local domain URLs. Namespace Drupal\Core\Utility Code protected function buildLocalUrl($uri, array $options = [], $collect_bubbleable_metadata = FALSE) { $generated_url = $collect_bubbleable_metadata ? new GeneratedUrl() : NULL; $t

FormState::setProgrammedBypassAccessCheck

public FormState::setProgrammedBypassAccessCheck($programmed_bypass_access_check = TRUE) Sets if this form submission should bypass #access. Parameters bool $programmed_bypass_access_check: If TRUE, programmatic form submissions are processed without taking #access into account. Return value $this Overrides FormStateInterface::setProgrammedBypassAccessCheck See also \Drupal\Core\Form\FormState::$programmed_bypass_access_check File core/lib/Drupal/Core/Form/FormState.php, line 687 Class F

FormValidator::handleErrorsWithLimitedValidation

protected FormValidator::handleErrorsWithLimitedValidation(&$form, FormStateInterface &$form_state, $form_id) Handles validation errors for forms with limited validation. If validation errors are limited then remove any non validated form values, so that only values that passed validation are left for submit callbacks. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. strin

FilterUninstallValidator::$filterManager

The filter plugin manager. Type: \Drupal\Component\Plugin\PluginManagerInterface File core/modules/filter/src/FilterUninstallValidator.php, line 23 Class FilterUninstallValidator Prevents uninstallation of modules providing used filter plugins. Namespace Drupal\filter Code protected $filterManager;

BookOutlineStorage::getChildRelativeDepth

public BookOutlineStorage::getChildRelativeDepth($book_link, $max_depth) Gets child relative depth. Parameters array $book_link: The book link. int $max_depth: The maximum supported depth of the book tree. Return value int The depth of the searched book. Overrides BookOutlineStorageInterface::getChildRelativeDepth File core/modules/book/src/BookOutlineStorage.php, line 61 Class BookOutlineStorage Defines a storage class for books outline. Namespace Drupal\book Code public function ge

EntityDisplayModeBase::$label

The human-readable name of the form or view mode. Type: string File core/lib/Drupal/Core/Entity/EntityDisplayModeBase.php, line 25 Class EntityDisplayModeBase Base class for config entity types with settings for form and view modes. Namespace Drupal\Core\Entity Code protected $label;

ForumForm::$urlStub

Reusable url stub to use in watchdog messages. Type: string File core/modules/forum/src/Form/ForumForm.php, line 26 Class ForumForm Base form for forum term edit forms. Namespace Drupal\forum\Form Code protected $urlStub = 'forum';

RouteSubscriberBase::alterRoutes

abstract protected RouteSubscriberBase::alterRoutes(RouteCollection $collection) Alters existing routes for a specific collection. Parameters \Symfony\Component\Routing\RouteCollection $collection: The route collection for adding routes. File core/lib/Drupal/Core/Routing/RouteSubscriberBase.php, line 19 Class RouteSubscriberBase Provides a base implementation for RouteSubscriber. Namespace Drupal\Core\Routing Code abstract protected function alterRoutes(RouteCollection $collection);

StorageComparer::addChangelistUpdate

protected StorageComparer::addChangelistUpdate($collection) Creates the update changelist. The list of updates is sorted so that dependencies are created before configuration entities that depend on them. For example, field storages should be updated before fields. Parameters string $collection: The storage collection to operate on. File core/lib/Drupal/Core/Config/StorageComparer.php, line 256 Class StorageComparer Defines a config storage comparer. Namespace Drupal\Core\Config Code

FileSystemInterface::basename

public FileSystemInterface::basename($uri, $suffix = NULL) Gets the filename from a given path. PHP's basename() does not properly support streams or filenames beginning with a non-US-ASCII character. See also http://bugs.php.net/bug.php?id=37738 basename() Related topics PHP wrapper functions Functions that are wrappers or custom implementations of PHP functions. File core/lib/Drupal/Core/File/FileSystemInterface.php, line 134 Class FileSystemInterface Provides an interface for helpers