PoStreamWriter::setURI

public PoStreamWriter::setURI($uri) Set the URI of the PO stream that is going to be read or written. Parameters $uri: URI string to set for this stream. Overrides PoStreamInterface::setURI File core/lib/Drupal/Component/Gettext/PoStreamWriter.php, line 153 Class PoStreamWriter Defines a Gettext PO stream writer. Namespace Drupal\Component\Gettext Code public function setURI($uri) { $this->_uri = $uri; }

DataDefinition::getLabel

public DataDefinition::getLabel() Returns a human readable label. Return value string|\Drupal\Core\StringTranslation\TranslatableMarkup The label. A string or an instance of TranslatableMarkup will be returned based on the way the label translation is handled. Overrides DataDefinitionInterface::getLabel File core/lib/Drupal/Core/TypedData/DataDefinition.php, line 72 Class DataDefinition A typed data definition class for defining data based on defined data types. Namespace Drupal\Core\T

Connection::databaseType

public Connection::databaseType() Returns the name of the PDO driver for this connection. Overrides Connection::databaseType File core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php, line 268 Class Connection PostgreSQL implementation of \Drupal\Core\Database\Connection. Namespace Drupal\Core\Database\Driver\pgsql Code public function databaseType() { return 'pgsql'; }

PathController::$aliasStorage

The path alias storage. Type: \Drupal\Core\Path\AliasStorageInterface File core/modules/path/src/Controller/PathController.php, line 23 Class PathController Controller routines for path routes. Namespace Drupal\path\Controller Code protected $aliasStorage;

TablesInterface

Adds tables and fields to the SQL entity query. Hierarchy interface \Drupal\Core\Entity\Query\Sql\TablesInterface File core/lib/Drupal/Core/Entity/Query/Sql/TablesInterface.php, line 8 Namespace Drupal\Core\Entity\Query\Sql Members Name Modifiers Type Description TablesInterface::addField public function Adds a field to a database query. TablesInterface::isFieldCaseSensitive public function Determines whether the given field is case sensitive.

DataDefinition::setClass

public DataDefinition::setClass($class) Sets the class used for creating the typed data object. Parameters string|null $class: The class to use. Return value static The object itself for chaining. File core/lib/Drupal/Core/TypedData/DataDefinition.php, line 207 Class DataDefinition A typed data definition class for defining data based on defined data types. Namespace Drupal\Core\TypedData Code public function setClass($class) { $this->definition['class'] = $class; return $this

LanguageConfigFactoryOverride::getOverride

public LanguageConfigFactoryOverride::getOverride($langcode, $name) Get language override for given language and configuration name. Parameters string $langcode: Language code. string $name: Configuration name. Return value \Drupal\Core\Config\Config Configuration override object. Overrides LanguageConfigFactoryOverrideInterface::getOverride File core/modules/language/src/Config/LanguageConfigFactoryOverride.php, line 92 Class LanguageConfigFactoryOverride Provides language overrides for

FormValidatorInterface::validateForm

public FormValidatorInterface::validateForm($form_id, &$form, FormStateInterface &$form_state) Validates user-submitted form data in the $form_state. Parameters $form_id: A unique string identifying the form for validation, submission, theming, and hook_form_alter functions. $form: An associative array containing the structure of the form, which is passed by reference. Form validation handlers are able to alter the form structure (like #process and #after_build callbacks during form bu

ImageStyleInterface::getName

public ImageStyleInterface::getName() Returns the image style. Return value string The name of the image style. File core/modules/image/src/ImageStyleInterface.php, line 32 Class ImageStyleInterface Provides an interface defining an image style entity. Namespace Drupal\image Code public function getName();

BlockContentForm::$entity

The block content entity. Type: \Drupal\block_content\BlockContentInterface Overrides EntityForm::$entity File core/modules/block_content/src/BlockContentForm.php, line 44 Class BlockContentForm Form handler for the custom block edit forms. Namespace Drupal\block_content Code protected $entity;