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::$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::$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

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

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

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/pgsql/Upsert.php, line 79 Class Upsert PostgreSQL implementation of \Drupal\Core\Database\Query\Upsert. Namespace Drupal\Core\Database\Driver\pgsql Code public functi

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::__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/mysql/Upsert.php, line 15 Class Upsert MySQL implementation of \Drupal\Core\Database\Query\Upsert. Namespace Drupal\Core\Database\Driver\mysql Code public function __

Upsert::__construct

public Upsert::__construct(Connection $connection, $table, array $options = []) Constructs an Upsert object. Parameters \Drupal\Core\Database\Connection $connection: A Connection object. string $table: Name of the table to associate with this query. array $options: (optional) An array of database options. Overrides Query::__construct File core/lib/Drupal/Core/Database/Query/Upsert.php, line 37 Class Upsert General class for an abstracted "Upsert" (UPDATE or INSERT) query operation. Name