ContentEntityBase::$activeLangcode

Language code identifying the entity active language. This is the language field accessors will use to determine which field values manipulate. Type: string File core/lib/Drupal/Core/Entity/ContentEntityBase.php, line 96 Class ContentEntityBase Implements Entity Field API specific enhancements to the Entity class. Namespace Drupal\Core\Entity Code protected $activeLangcode = LanguageInterface::LANGCODE_DEFAULT;

CachedStorage::getAllCollectionNames

public CachedStorage::getAllCollectionNames() Gets the existing collections. A configuration storage can contain multiple sets of configuration objects in partitioned collections. The collection key name identifies the current collection used. Return value array An array of existing collection names. Overrides StorageInterface::getAllCollectionNames File core/lib/Drupal/Core/Config/CachedStorage.php, line 246 Class CachedStorage Defines the cached storage. Namespace Drupal\Core\Config

USER_REGISTER_VISITORS_ADMINISTRATIVE_APPROVAL

Visitors can create accounts, but they don't become active without administrative approval. File core/modules/user/user.module, line 48 Enables the user registration and login system. Code const USER_REGISTER_VISITORS_ADMINISTRATIVE_APPROVAL = 'visitors_admin_approval';

ImmutableConfig::set

public ImmutableConfig::set($key, $value) Sets a value in this configuration object. Parameters string $key: Identifier to store value in configuration. mixed $value: Value to associate with identifier. Return value $this The configuration object. Throws \Drupal\Core\Config\ConfigValueException If $value is an array and any of its keys in any depth contains a dot. Overrides Config::set File core/lib/Drupal/Core/Config/ImmutableConfig.php, line 26 Class ImmutableConfig Defines the immuta

LocalStream::realpath

LocalStream::realpath() Returns canonical, absolute path of the resource. Implementation placeholder. PHP's realpath() does not support stream wrappers. We provide this as a default so that individual wrappers may implement their own solutions. Return value string Returns a string with absolute pathname on success (implemented by core wrappers), or FALSE on failure or if the registered wrapper does not provide an implementation. Overrides StreamWrapperInterface::realpath File core/lib/Drupal/C

LocalStream::stream_cast

public LocalStream::stream_cast($cast_as) Retrieve the underlying stream resource. This method is called in response to stream_select(). Parameters int $cast_as: Can be STREAM_CAST_FOR_SELECT when stream_select() is calling stream_cast() or STREAM_CAST_AS_STREAM when stream_cast() is called for other uses. Return value resource|false The underlying stream resource or FALSE if stream_select() is not supported. Overrides PhpStreamWrapperInterface::stream_cast See also stream_select() http://ph

Connection::$transactionLayers

Tracks the number of "layers" of transactions currently active. On many databases transactions cannot nest. Instead, we track nested calls to transactions and collapse them into a single transaction. Type: array File core/lib/Drupal/Core/Database/Connection.php, line 53 Class Connection Base Database API class. Namespace Drupal\Core\Database Code protected $transactionLayers = array();

LocaleConfigManager::isSupported

public LocaleConfigManager::isSupported($name) Whether the given configuration is supported for interface translation. Parameters string $name: The configuration name. Return value bool TRUE if interface translation is supported. File core/modules/locale/src/LocaleConfigManager.php, line 532 Class LocaleConfigManager Manages configuration supported in part by interface translation. Namespace Drupal\locale Code public function isSupported($name) { return $this->getDefaultConfigLa

CommentInterface::getAuthorName

public CommentInterface::getAuthorName() Returns the comment author's name. For anonymous authors, this is the value as typed in the comment form. Return value string The name of the comment author. File core/modules/comment/src/CommentInterface.php, line 110 Class CommentInterface Provides an interface defining a comment entity. Namespace Drupal\comment Code public function getAuthorName();

LanguageConfigFactoryOverrideInterface

Defines the interface for a configuration factory language override object. Hierarchy interface \Drupal\Core\Config\ConfigFactoryOverrideInterfaceinterface \Drupal\language\Config\LanguageConfigFactoryOverrideInterface File core/modules/language/src/Config/LanguageConfigFactoryOverrideInterface.php, line 12 Namespace Drupal\language\Config Members Name Modifiers Type Description ConfigFactoryOverrideInterface::createConfigObject public function Creates a configuration o