Update

SQLite implementation of \Drupal\Core\Database\Query\Update. Hierarchy class \Drupal\Core\Database\Query\Query implements PlaceholderInterfaceclass \Drupal\Core\Database\Query\Update implements ConditionInterface uses QueryConditionTraitclass \Drupal\Core\Database\Driver\sqlite\Update File core/lib/Drupal/Core/Database/Driver/sqlite/Update.php, line 10 Namespace Drupal\Core\Database\Driver\sqlite Members Name Modifiers Type Description Query::$comments protected property

Update

General class for an abstracted UPDATE operation. Hierarchy class \Drupal\Core\Database\Query\Query implements PlaceholderInterfaceclass \Drupal\Core\Database\Query\Update implements ConditionInterface uses QueryConditionTrait Related topics Database abstraction layer Allow the use of different database servers using the same code base. File core/lib/Drupal/Core/Database/Query/Update.php, line 13 Namespace Drupal\Core\Database\Query Members Name Modifiers Type Description Q

UnsupportedDataTypeConfigException

Exception thrown when a config data type is invalid. Hierarchy class \Drupal\Core\Config\ConfigException extends \RuntimeExceptionclass \Drupal\Core\Config\UnsupportedDataTypeConfigException File core/lib/Drupal/Core/Config/UnsupportedDataTypeConfigException.php, line 8 Namespace Drupal\Core\Config Members

UnroutedUrlAssemblerInterface::assemble

public UnroutedUrlAssemblerInterface::assemble($uri, array $options = array(), $collect_bubbleable_metadata = FALSE) Builds a domain-local or external URL from a URI. For actual implementations the logic probably has to be split up between domain-local URIs and external URLs. Parameters string $uri: A local URI or an external URL being linked to, such as "base:foo" or "http://example.com/foo". If you provide a full URL, it will be considered an external URL as long as it has an allowed protoco

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

UnroutedUrlAssembler::buildExternalUrl

protected UnroutedUrlAssembler::buildExternalUrl($uri, array $options = [], $collect_bubbleable_metadata = FALSE) File core/lib/Drupal/Core/Utility/UnroutedUrlAssembler.php, line 70 Class UnroutedUrlAssembler Provides a way to build external or non Drupal local domain URLs. Namespace Drupal\Core\Utility Code protected function buildExternalUrl($uri, array $options = [], $collect_bubbleable_metadata = FALSE) { $this->addOptionDefaults($options); // Split off the fragment. if (s

UnroutedUrlAssemblerInterface

Provides a way to build external or non Drupal local domain URLs. Hierarchy interface \Drupal\Core\Utility\UnroutedUrlAssemblerInterface File core/lib/Drupal/Core/Utility/UnroutedUrlAssemblerInterface.php, line 8 Namespace Drupal\Core\Utility Members Name Modifiers Type Description UnroutedUrlAssemblerInterface::assemble public function Builds a domain-local or external URL from a URI.

UnroutedUrlAssembler::__construct

public UnroutedUrlAssembler::__construct(RequestStack $request_stack, OutboundPathProcessorInterface $path_processor, array $filter_protocols = ['http', 'https']) Constructs a new unroutedUrlAssembler object. Parameters \Symfony\Component\HttpFoundation\RequestStack $request_stack: A request stack object. \Drupal\Core\PathProcessor\OutboundPathProcessorInterface $path_processor: The output path processor. string[] $filter_protocols: (optional) An array of protocols allowed for URL generation.

UnroutedUrlAssembler::assemble

public UnroutedUrlAssembler::assemble($uri, array $options = [], $collect_bubbleable_metadata = FALSE) This is a helper function that calls buildExternalUrl() or buildLocalUrl() based on a check of whether the path is a valid external URL. Overrides UnroutedUrlAssemblerInterface::assemble File core/lib/Drupal/Core/Utility/UnroutedUrlAssembler.php, line 53 Class UnroutedUrlAssembler Provides a way to build external or non Drupal local domain URLs. Namespace Drupal\Core\Utility Code pub

UnroutedUrlAssembler::$pathProcessor

The outbound path processor. Type: \Drupal\Core\PathProcessor\OutboundPathProcessorInterface File core/lib/Drupal/Core/Utility/UnroutedUrlAssembler.php, line 29 Class UnroutedUrlAssembler Provides a way to build external or non Drupal local domain URLs. Namespace Drupal\Core\Utility Code protected $pathProcessor;