EntityChangedTrait::getChangedTime

public EntityChangedTrait::getChangedTime() Gets the timestamp of the last entity change for the current translation. Return value int The timestamp of the last entity save operation. Overrides EntityChangedInterface::getChangedTime File core/lib/Drupal/Core/Entity/EntityChangedTrait.php, line 32 Class EntityChangedTrait Provides a trait for accessing changed time. Namespace Drupal\Core\Entity Code public function getChangedTime() { return $this->get('changed')->value; }

EntityDefinitionUpdateManager::__construct

public EntityDefinitionUpdateManager::__construct(EntityManagerInterface $entity_manager) Constructs a new EntityDefinitionUpdateManager. Parameters \Drupal\Core\Entity\EntityManagerInterface $entity_manager: The entity manager. File core/lib/Drupal/Core/Entity/EntityDefinitionUpdateManager.php, line 30 Class EntityDefinitionUpdateManager Manages entity definition updates. Namespace Drupal\Core\Entity Code public function __construct(EntityManagerInterface $entity_manager) { $this-&

TermStorageInterface::loadParents

public TermStorageInterface::loadParents($tid) Finds all parents of a given term ID. Parameters int $tid: Term ID to retrieve parents for. Return value \Drupal\taxonomy\TermInterface[] An array of term objects which are the parents of the term $tid. File core/modules/taxonomy/src/TermStorageInterface.php, line 38 Class TermStorageInterface Defines an interface for taxonomy_term entity storage classes. Namespace Drupal\taxonomy Code public function loadParents($tid);

Standard

Defines the standard text editor XSS filter. Hierarchy class \Drupal\Component\Utility\Xssclass \Drupal\editor\EditorXssFilter\Standard implements EditorXssFilterInterface File core/modules/editor/src/EditorXssFilter/Standard.php, line 13 Namespace Drupal\editor\EditorXssFilter Members Name Modifiers Type Description Standard::filterXss public static function Filters HTML to prevent XSS attacks when a user edits it in a text editor. Overrides EditorXssFilterInterface::f

RfcLogLevel::DEBUG

Log message severity -- Debug-level messages. File core/lib/Drupal/Core/Logger/RfcLogLevel.php, line 73 Class RfcLogLevel Defines various logging severity levels. Namespace Drupal\Core\Logger Code const DEBUG = 7;

ConfigurableLanguageManager::$negotiatedLanguages

An array of language objects keyed by language type. Type: \Drupal\Core\Language\LanguageInterface[] File core/modules/language/src/ConfigurableLanguageManager.php, line 76 Class ConfigurableLanguageManager Overrides default LanguageManager to provide configured languages. Namespace Drupal\language Code protected $negotiatedLanguages;

State::__construct

State::__construct(KeyValueFactoryInterface $key_value_factory) Constructs a State object. Parameters \Drupal\Core\KeyValueStore\KeyValueFactoryInterface $key_value_factory: The key value store to use. File core/lib/Drupal/Core/State/State.php, line 32 Class State Provides the state system using a key value store. Namespace Drupal\Core\State Code function __construct(KeyValueFactoryInterface $key_value_factory) { $this->keyValueStore = $key_value_factory->get('state'); }

Schema::resetTableInformation

protected Schema::resetTableInformation($table) Resets information about table blobs, sequences and serial fields. Parameters $table: The non-prefixed name of the table. File core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php, line 162 Class Schema PostgreSQL implementation of \Drupal\Core\Database\Schema. Namespace Drupal\Core\Database\Driver\pgsql Code protected function resetTableInformation($table) { $key = $this->connection->prefixTables('{' . $table . '}'); if (strp

MoreLink::getInfo

public MoreLink::getInfo() Returns the element properties for this element. Return value array An array of element properties. See \Drupal\Core\Render\ElementInfoManagerInterface::getInfo() for documentation of the standard properties of all elements, and the return value format. Overrides Link::getInfo File core/lib/Drupal/Core/Render/Element/MoreLink.php, line 28 Class MoreLink Provides a link render element for a "more" link, like those used in blocks. Namespace Drupal\Core\Render\E

EntityType::setStorageClass

public EntityType::setStorageClass($class) Sets the storage class. Parameters string $class: The class for this entity type's storage. Return value $this Overrides EntityTypeInterface::setStorageClass File core/lib/Drupal/Core/Entity/EntityType.php, line 482 Class EntityType Provides an implementation of an entity type and its metadata. Namespace Drupal\Core\Entity Code public function setStorageClass($class) { $this->checkStorageClass($class); $this->handlers['storage'] =