BlockContentForm::form

public BlockContentForm::form(array $form, FormStateInterface $form_state) Gets the actual form array to be built. Overrides ContentEntityForm::form See also \Drupal\Core\Entity\EntityForm::processForm() \Drupal\Core\Entity\EntityForm::afterBuild() File core/modules/block_content/src/BlockContentForm.php, line 100 Class BlockContentForm Form handler for the custom block edit forms. Namespace Drupal\block_content Code public function form(array $form, FormStateInterface $form_state) {

Editor::$format

The machine name of the text format with which this configured text editor is associated. Type: string See also getFilterFormat() File core/modules/editor/src/Entity/Editor.php, line 38 Class Editor Defines the configured text editor entity. Namespace Drupal\editor\Entity Code protected $format;

editor_entity_insert

editor_entity_insert(EntityInterface $entity) Implements hook_entity_insert(). File core/modules/editor/editor.module, line 348 Adds bindings for client-side "text editors" to text formats. Code function editor_entity_insert(EntityInterface $entity) { // Only act on content entities. if (!($entity instanceof FieldableEntityInterface)) { return; } $referenced_files_by_field = _editor_get_file_uuids_by_field($entity); foreach ($referenced_files_by_field as $field => $uuids) {

FeedStorageSchema

Defines the feed schema handler. Hierarchy class \Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema implements DynamicallyFieldableEntityStorageSchemaInterface uses DependencySerializationTraitclass \Drupal\aggregator\FeedStorageSchema File core/modules/aggregator/src/FeedStorageSchema.php, line 11 Namespace Drupal\aggregator Members Name Modifiers Type Description DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property

TableMappingInterface::getColumnNames

public TableMappingInterface::getColumnNames($field_name) Gets a mapping of field columns to database columns for a given field. Parameters string $field_name: The name of the entity field to return the column mapping for. Return value string[] The keys of this array are the keys of the array returned by FieldStorageDefinitionInterface::getColumns() while the respective values are the names of the database columns for this table mapping. File core/lib/Drupal/Core/Entity/Sql/TableMappingInterf

NodeGrantDatabaseStorage::$moduleHandler

The module handler. Type: \Drupal\Core\Extension\ModuleHandlerInterface File core/modules/node/src/NodeGrantDatabaseStorage.php, line 34 Class NodeGrantDatabaseStorage Defines a storage handler class that handles the node grants system. Namespace Drupal\node Code protected $moduleHandler;

NodeGrantDatabaseStorage::checkAll

public NodeGrantDatabaseStorage::checkAll(AccountInterface $account) Checks all grants for a given account. Parameters \Drupal\Core\Session\AccountInterface $account: A user object representing the user for whom the operation is to be performed. Return value int. Status of the access check. Overrides NodeGrantDatabaseStorageInterface::checkAll File core/modules/node/src/NodeGrantDatabaseStorage.php, line 132 Class NodeGrantDatabaseStorage Defines a storage handler class that handles the

Item::baseFieldDefinitions

public static Item::baseFieldDefinitions(EntityTypeInterface $entity_type) Provides base field definitions for an entity type. Implementations typically use the class \Drupal\Core\Field\BaseFieldDefinition for creating the field definitions; for example a 'name' field could be defined as the following: $fields['name'] = BaseFieldDefinition::create('string') ->setLabel(t('Name')); By definition, base fields are fields that exist for every bundle. To provide definitions for fields that sho

Item::getCacheTagsToInvalidate

public Item::getCacheTagsToInvalidate() Returns the cache tags that should be used to invalidate caches. This will not return additional cache tags added through addCacheTags(). Return value string[] Set of cache tags. Overrides Entity::getCacheTagsToInvalidate See also \Drupal\Core\Cache\RefinableCacheableDependencyInterface::addCacheTags() \Drupal\Core\Cache\CacheableDependencyInterface::getCacheTags() File core/modules/aggregator/src/Entity/Item.php, line 231 Class Item Defines the ag

UPDATE_NOT_FETCHED

There was a failure fetching available update data for this project. File core/modules/update/update.module, line 59 Handles updates of Drupal core and contributed projects. Code const UPDATE_NOT_FETCHED = -3;