InPlaceEditor::$id

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

SourceString::getString

public SourceString::getString() Gets plain string contained in this object. Return value string The string contained in this object. Overrides StringInterface::getString File core/modules/locale/src/SourceString.php, line 30 Class SourceString Defines the locale source string object. Namespace Drupal\locale Code public function getString() { return isset($this->source) ? $this->source : ''; }

EntityAccessControlHandlerInterface::access

public EntityAccessControlHandlerInterface::access(EntityInterface $entity, $operation, AccountInterface $account = NULL, $return_as_object = FALSE) Checks access to an operation on a given entity or entity translation. Use \Drupal\Core\Entity\EntityAccessControlHandlerInterface::createAccess() to check access to create an entity. Parameters \Drupal\Core\Entity\EntityInterface $entity: The entity for which to check access. string $operation: The operation access should be checked for. Usually

SqlContentEntityStorageSchema::onFieldStorageDefinitionCreate

public SqlContentEntityStorageSchema::onFieldStorageDefinitionCreate(FieldStorageDefinitionInterface $storage_definition) Reacts to the creation of a field storage definition. Parameters \Drupal\Core\Field\FieldStorageDefinitionInterface $storage_definition: The definition being created. Overrides FieldStorageDefinitionListenerInterface::onFieldStorageDefinitionCreate File core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php, line 385 Class SqlContentEntityStorageSchema Defin

QueueWorkerBase

Provides a base implementation for a QueueWorker plugin. Hierarchy class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterfaceclass \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface See also \Drupal\Core\Queue\QueueWorkerInterface \Drupal\Core\Queue\QueueWorkerManager \Drupal\Core\Annotation\QueueWorker Plugin API File core/lib/Drupal/Core/Queue/QueueWorkerBase.php, line 15 Namespace Drupal\Core\Queue Members Name

PermissionsHashGenerator::$static

The cache backend interface to use for the static cache. Type: \Drupal\Core\Cache\CacheBackendInterface File core/lib/Drupal/Core/Session/PermissionsHashGenerator.php, line 34 Class PermissionsHashGenerator Generates and caches the permissions hash for a user. Namespace Drupal\Core\Session Code protected $static;

ConfigMapperInterface::getTitle

public ConfigMapperInterface::getTitle() Returns title of this translation page. Return value string The page title. File core/modules/config_translation/src/ConfigMapperInterface.php, line 20 Class ConfigMapperInterface Defines an interface for configuration mapper. Namespace Drupal\config_translation Code public function getTitle();

editor_form_filter_admin_format_editor_configure

editor_form_filter_admin_format_editor_configure($form, FormStateInterface $form_state) Button submit handler for filter_format_form()'s 'editor_configure' button. File core/modules/editor/editor.module, line 186 Adds bindings for client-side "text editors" to text formats. Code function editor_form_filter_admin_format_editor_configure($form, FormStateInterface $form_state) { $editor = $form_state->get('editor'); $editor_value = $form_state->getValue(array('editor', 'editor')); if

EntityType::getBaseTable

public EntityType::getBaseTable() Gets the name of the entity's base table. @todo Used by SqlContentEntityStorage only. Return value string|null The name of the entity's base table, or NULL if none exists. Overrides EntityTypeInterface::getBaseTable File core/lib/Drupal/Core/Entity/EntityType.php, line 688 Class EntityType Provides an implementation of an entity type and its metadata. Namespace Drupal\Core\Entity Code public function getBaseTable() { return $this->base_table; }

ControllerResolver::createController

protected ControllerResolver::createController($controller) Returns a callable for the given controller. Parameters string $controller: A Controller string. Return value mixed A PHP callable. Throws \LogicException If the controller cannot be parsed. \InvalidArgumentException If the controller class does not exist. Overrides ControllerResolver::createController File core/lib/Drupal/Core/Controller/ControllerResolver.php, line 109 Class ControllerResolver ControllerResolver to enhance co