EntityForm::$entity

The entity being used by this form. Type: \Drupal\Core\Entity\EntityInterface File core/lib/Drupal/Core/Entity/EntityForm.php, line 56 Class EntityForm Base class for entity forms. Namespace Drupal\Core\Entity Code protected $entity;

EntityTypeManager::clearCachedDefinitions

public EntityTypeManager::clearCachedDefinitions() Clears static and persistent plugin definition caches. Don't resort to calling \Drupal::cache()->delete() and friends to make Drupal detect new or updated plugin definitions. Always use this method on the appropriate plugin type's plugin manager! Overrides DefaultPluginManager::clearCachedDefinitions File core/lib/Drupal/Core/Entity/EntityTypeManager.php, line 139 Class EntityTypeManager Manages entity type plugin definitions. Namespa

EntityManager::getLastInstalledFieldStorageDefinitions

public EntityManager::getLastInstalledFieldStorageDefinitions($entity_type_id) Overrides EntityManagerInterface::getLastInstalledFieldStorageDefinitions Deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. File core/lib/Drupal/Core/Entity/EntityManager.php, line 475 Class EntityManager Provides a wrapper around many other services relating to entities. Namespace Drupal\Core\Entity Code public function getLastInstalledFieldStorageDefinitions($entity_type_id) { return $t

ConfigTranslationController::create

public static ConfigTranslationController::create(ContainerInterface $container) Instantiates a new instance of this class. This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton. Parameters \Symfony\Component\DependencyInjection\ContainerInterface $container:

ContextCacheKeys::getKeys

public ContextCacheKeys::getKeys() Gets the generated cache keys. Return value string[] The cache keys. File core/lib/Drupal/Core/Cache/Context/ContextCacheKeys.php, line 35 Class ContextCacheKeys A value object to store generated cache keys with its cacheability metadata. Namespace Drupal\Core\Cache\Context Code public function getKeys() { return $this->keys; }

DiffFormatter::deletedLine

protected DiffFormatter::deletedLine($line) Creates a deleted line. Parameters string $line: An HTML-escaped line. Return value array An array representing a table row. File core/lib/Drupal/Core/Diff/DiffFormatter.php, line 120 Class DiffFormatter Diff formatter which uses returns output that can be rendered to a table. Namespace Drupal\Core\Diff Code protected function deletedLine($line) { return array( array( 'data' => '-', 'class' => 'diff-marker', ),

DataCommand::$name

The key of the data attached to elements matched by the selector. Type: string File core/lib/Drupal/Core/Ajax/DataCommand.php, line 33 Class DataCommand An AJAX command for implementing jQuery's data() method. Namespace Drupal\Core\Ajax Code protected $name;

StringStorageException

Defines an exception thrown when storage operations fail. Hierarchy class \Drupal\locale\StringStorageException extends \Exception File core/modules/locale/src/StringStorageException.php, line 8 Namespace Drupal\locale Members

Filter::$id

The plugin ID. Type: string File core/modules/filter/src/Annotation/Filter.php, line 28 Class Filter Defines an filter annotation object. Namespace Drupal\filter\Annotation Code public $id;

Connection::driver

public Connection::driver() Returns the type of database driver. This is not necessarily the same as the type of the database itself. For instance, there could be two MySQL drivers, mysql and mysql_mock. This function would return different values for each, but both would return "mysql" for databaseType(). Return value string The type of database driver. Overrides Connection::driver File core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php, line 348 Class Connection SQLite implement