DefaultTableMapping::$entityType

The entity type definition. Type: \Drupal\Core\Entity\ContentEntityTypeInterface File core/lib/Drupal/Core/Entity/Sql/DefaultTableMapping.php, line 18 Class DefaultTableMapping Defines a default table mapping class. Namespace Drupal\Core\Entity\Sql Code protected $entityType;

FormBase::resetConfigFactory

public FormBase::resetConfigFactory() Resets the configuration factory. File core/lib/Drupal/Core/Form/FormBase.php, line 143 Class FormBase Provides a base class for forms. Namespace Drupal\Core\Form Code public function resetConfigFactory() { $this->configFactory = NULL; }

Token::$cache

The token cache. Type: \Drupal\Core\Cache\CacheBackendInterface File core/lib/Drupal/Core/Utility/Token.php, line 72 Class Token Drupal placeholder/token replacement system. Namespace Drupal\Core\Utility Code protected $cache;

hook_ckeditor_css_alter

hook_ckeditor_css_alter(array &$css, Editor $editor) Modify the list of CSS files that will be added to a CKEditor instance. Modules may use this hook to provide their own custom CSS file without providing a CKEditor plugin. This list of CSS files is only used in the iframe versions of CKEditor. Front-end themes (and base themes) can easily specify CSS files to be used in iframe instances of CKEditor through an entry in their .info.yml file: ckeditor_stylesheets: - css/ckeditor-iframe.css

DateTimePlus::$inputFormatRaw

The value of the format passed to the constructor. File core/lib/Drupal/Component/Datetime/DateTimePlus.php, line 76 Class DateTimePlus Wraps DateTime(). Namespace Drupal\Component\Datetime Code protected $inputFormatRaw = '';

ContentModerationState::getOwner

public ContentModerationState::getOwner() Returns the entity owner's user entity. Return value \Drupal\user\UserInterface The owner user entity. Overrides EntityOwnerInterface::getOwner File core/modules/content_moderation/src/Entity/ContentModerationState.php, line 95 Class ContentModerationState Defines the Content moderation state entity. Namespace Drupal\content_moderation\Entity Code public function getOwner() { return $this->get('uid')->entity; }

ThemeInstaller::install

public ThemeInstaller::install(array $theme_list, $install_dependencies = TRUE) Installs a given list of themes. Parameters array $theme_list: An array of theme names. bool $install_dependencies: (optional) If TRUE, dependencies will automatically be installed in the correct order. This incurs a significant performance cost, so use FALSE if you know $theme_list is already complete and in the correct order. Return value bool Whether any of the given themes have been installed. Throws \Drupal\

BatchStorage::schemaDefinition

public BatchStorage::schemaDefinition() Defines the schema for the batch table. File core/lib/Drupal/Core/Batch/BatchStorage.php, line 204 Class BatchStorage Namespace Drupal\Core\Batch Code public function schemaDefinition() { return [ 'description' => 'Stores details about batches (processes that run in multiple HTTP requests).', 'fields' => [ 'bid' => [ 'description' => 'Primary Key: Unique batch ID.', // This is not a serial column, to a

FieldItemList::deleteRevision

public FieldItemList::deleteRevision() Defines custom revision delete behavior for field values. This method is called from during the process of deleting an entity revision, just before the field values are deleted from storage. It is only called for entity types that support revisioning. Overrides FieldItemListInterface::deleteRevision File core/lib/Drupal/Core/Field/FieldItemList.php, line 223 Class FieldItemList Represents an entity field; that is, a list of field item objects. Names

Breakpoint::getMultipliers

public Breakpoint::getMultipliers() Returns the multipliers. Return value array The multipliers. Overrides BreakpointInterface::getMultipliers File core/modules/breakpoint/src/Breakpoint.php, line 39 Class Breakpoint Default object used for breakpoint plugins. Namespace Drupal\breakpoint Code public function getMultipliers() { return $this->pluginDefinition['multipliers']; }