Url::$external

Indicates whether this object contains an external URL. Type: bool File core/lib/Drupal/Core/Url.php, line 69 Class Url Defines an object that holds information about a URL. Namespace Drupal\Core Code protected $external = FALSE;

Url::$internalPath

Stores the internal path, if already requested by getInternalPath(). Type: string File core/lib/Drupal/Core/Url.php, line 92 Class Url Defines an object that holds information about a URL. Namespace Drupal\Core Code protected $internalPath;

Url

Provides a form element for input of a URL. Properties: #default_value: A valid URL string. Usage example: $form['homepage'] = array( '#type' => 'url', '#title' => $this->t('Home Page'), '#size' => 30, ... ); Plugin annotation @FormElement("url") Hierarchy class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterfaceclass \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, StringTranslationTraitclass \Drupal\

Url::$accessManager

The access manager Type: \Drupal\Core\Access\AccessManagerInterface File core/lib/Drupal/Core/Url.php, line 39 Class Url Defines an object that holds information about a URL. Namespace Drupal\Core Code protected $accessManager;

Url

Defines an object that holds information about a URL. Hierarchy class \Drupal\Core\Url uses DependencySerializationTrait File core/lib/Drupal/Core/Url.php, line 17 Namespace Drupal\Core Members Name Modifiers Type Description DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization. DependencySerializationTrait::__sleep public function DependencySerializationTrait::__wakeup public fu

Upsert::__toString

public Upsert::__toString() Implements PHP magic __toString method to convert the query to a string. The toString operation is how we compile a query object to a prepared statement. Return value string A prepared statement query string for this object. Overrides Query::__toString File core/lib/Drupal/Core/Database/Driver/pgsql/Upsert.php, line 79 Class Upsert PostgreSQL implementation of \Drupal\Core\Database\Query\Upsert. Namespace Drupal\Core\Database\Driver\pgsql Code public functi

UriInterface

Interface for URIs. The plain value of a URI is an absolute URI represented as PHP string. Hierarchy interface \Drupal\Core\TypedData\PrimitiveInterfaceinterface \Drupal\Core\TypedData\Type\UriInterface Related topics Typed Data API API for describing data based on a set of available data types. File core/lib/Drupal/Core/TypedData/Type/UriInterface.php, line 14 Namespace Drupal\Core\TypedData\Type Members Name Modifiers Type Description PrimitiveInterface::getCastedValue

Upsert::__toString

public Upsert::__toString() Implements PHP magic __toString method to convert the query to a string. The toString operation is how we compile a query object to a prepared statement. Return value string A prepared statement query string for this object. Overrides Query::__toString File core/lib/Drupal/Core/Database/Driver/sqlite/Upsert.php, line 15 Class Upsert SQLite implementation of \Drupal\Core\Database\Query\Upsert. Namespace Drupal\Core\Database\Driver\sqlite Code public function

Upsert::preExecute

protected Upsert::preExecute() Preprocesses and validates the query. Return value bool TRUE if the validation was successful, FALSE otherwise. Throws \Drupal\Core\Database\Query\NoUniqueFieldException \Drupal\Core\Database\Query\FieldsOverlapException \Drupal\Core\Database\Query\NoFieldsException File core/lib/Drupal/Core/Database/Query/Upsert.php, line 67 Class Upsert General class for an abstracted "Upsert" (UPDATE or INSERT) query operation. Namespace Drupal\Core\Database\Query Co

Upsert::key

public Upsert::key($field) Sets the unique / primary key field to be used as condition for this query. Parameters string $field: The name of the field to set. Return value $this File core/lib/Drupal/Core/Database/Query/Upsert.php, line 51 Class Upsert General class for an abstracted "Upsert" (UPDATE or INSERT) query operation. Namespace Drupal\Core\Database\Query Code public function key($field) { $this->key = $field; return $this; }