Search for %s

  1. Search 7.x for %s
  2. Search 9.5.x for %s
  3. Search 10.3.x for %s
  4. Search 11.x for %s
  5. Search main for %s
  6. Other projects
Title Object type File name Summary
FieldStorageConfig::getPropertyDefinition function core/modules/field/src/Entity/FieldStorageConfig.php Gets the definition of a contained property.
FieldStorageConfig::getPropertyDefinitions function core/modules/field/src/Entity/FieldStorageConfig.php Gets an array of property definitions of contained properties.
FieldStorageConfig::getPropertyNames function core/modules/field/src/Entity/FieldStorageConfig.php Returns the names of the field's subproperties.
FieldStorageConfig::getProvider function core/modules/field/src/Entity/FieldStorageConfig.php Returns the name of the provider of this field.
FieldStorageConfig::getSchema function core/modules/field/src/Entity/FieldStorageConfig.php Returns the field schema.
FieldStorageConfig::getSetting function core/modules/field/src/Entity/FieldStorageConfig.php Returns the value of a given storage setting.
FieldStorageConfig::getSettings function core/modules/field/src/Entity/FieldStorageConfig.php Returns the storage settings.
FieldStorageConfig::getTargetEntityTypeId function core/modules/field/src/Entity/FieldStorageConfig.php Returns the ID of the entity type the field is attached to.
FieldStorageConfig::getType function core/modules/field/src/Entity/FieldStorageConfig.php Returns the field type.
FieldStorageConfig::getTypeProvider function core/modules/field/src/Entity/FieldStorageConfig.php Returns the name of the module providing the field type.
FieldStorageConfig::getUniqueStorageIdentifier function core/modules/field/src/Entity/FieldStorageConfig.php Returns a unique identifier for the field storage.
FieldStorageConfig::hasCustomStorage function core/modules/field/src/Entity/FieldStorageConfig.php Returns the storage behavior for this field.
FieldStorageConfig::hasData function core/modules/field/src/Entity/FieldStorageConfig.php Determines whether a field has any data.
FieldStorageConfig::id function core/modules/field/src/Entity/FieldStorageConfig.php Gets the identifier.
FieldStorageConfig::isBaseField function core/modules/field/src/Entity/FieldStorageConfig.php Determines whether the field is a base field.
FieldStorageConfig::isDeletable function core/modules/field/src/Entity/FieldStorageConfig.php Checks if the field storage can be deleted.
FieldStorageConfig::isDeleted function core/modules/field/src/Entity/FieldStorageConfig.php Returns whether the field is deleted or not.
FieldStorageConfig::isLocked function core/modules/field/src/Entity/FieldStorageConfig.php Returns whether the field storage is locked or not.
FieldStorageConfig::isMultiple function core/modules/field/src/Entity/FieldStorageConfig.php Returns whether the field can contain multiple items.
FieldStorageConfig::isQueryable function core/modules/field/src/Entity/FieldStorageConfig.php Determines whether the field is queryable via QueryInterface.
FieldStorageConfig::isRevisionable function core/modules/field/src/Entity/FieldStorageConfig.php Returns whether the field storage is revisionable.
FieldStorageConfig::isTranslatable function core/modules/field/src/Entity/FieldStorageConfig.php Returns whether the field supports translation.
FieldStorageConfig::loadByName function core/modules/field/src/Entity/FieldStorageConfig.php Loads a field config entity based on the entity type and field name.
FieldStorageConfig::NAME_MAX_LENGTH constant core/modules/field/src/Entity/FieldStorageConfig.php The maximum length of the field name, in characters.
FieldStorageConfig::postDelete function core/modules/field/src/Entity/FieldStorageConfig.php Acts on deleted entities before the delete hook is invoked.
FieldStorageConfig::postSave function core/modules/field/src/Entity/FieldStorageConfig.php Acts on a saved entity before the insert or update hook is invoked.
FieldStorageConfig::preDelete function core/modules/field/src/Entity/FieldStorageConfig.php Acts on entities before they are deleted and before hooks are invoked.
FieldStorageConfig::preSave function core/modules/field/src/Entity/FieldStorageConfig.php Overrides \Drupal\Core\Entity\Entity::preSave().
FieldStorageConfig::preSaveNew function core/modules/field/src/Entity/FieldStorageConfig.php Prepares saving a new field definition.
FieldStorageConfig::preSaveUpdated function core/modules/field/src/Entity/FieldStorageConfig.php Prepares saving an updated field definition.
FieldStorageConfig::setCardinality function core/modules/field/src/Entity/FieldStorageConfig.php Sets the maximum number of items allowed for the field.
FieldStorageConfig::setIndexes function core/modules/field/src/Entity/FieldStorageConfig.php Sets the custom storage indexes for the field data storage..
FieldStorageConfig::setLocked function core/modules/field/src/Entity/FieldStorageConfig.php Sets the locked flag.
FieldStorageConfig::setSetting function core/modules/field/src/Entity/FieldStorageConfig.php Sets the value for a field setting by name.
FieldStorageConfig::setSettings function core/modules/field/src/Entity/FieldStorageConfig.php Sets field storage settings.
FieldStorageConfig::setTranslatable function core/modules/field/src/Entity/FieldStorageConfig.php Sets whether the field is translatable.
FieldStorageConfig::__construct function core/modules/field/src/Entity/FieldStorageConfig.php Constructs a FieldStorageConfig object.
FieldStorageConfig::__sleep function core/modules/field/src/Entity/FieldStorageConfig.php Implements the magic __sleep() method.
FieldStorageConfigAccessControlHandler class core/modules/field/src/FieldStorageConfigAccessControlHandler.php Defines the access control handler for the field storage config entity type.
FieldStorageConfigAccessControlHandler.php file core/modules/field/src/FieldStorageConfigAccessControlHandler.php
FieldStorageConfigAccessControlHandler::checkAccess function core/modules/field/src/FieldStorageConfigAccessControlHandler.php Performs access checks.
FieldStorageConfigAccessControlHandlerTest class core/modules/field/tests/src/Unit/FieldStorageConfigAccessControlHandlerTest.php Tests the field storage config access controller.
FieldStorageConfigAccessControlHandlerTest.php file core/modules/field/tests/src/Unit/FieldStorageConfigAccessControlHandlerTest.php
FieldStorageConfigAccessControlHandlerTest::$accessControlHandler property core/modules/field/tests/src/Unit/FieldStorageConfigAccessControlHandlerTest.php The field storage config access controller to test.
FieldStorageConfigAccessControlHandlerTest::$anon property core/modules/field/tests/src/Unit/FieldStorageConfigAccessControlHandlerTest.php The mock account without field storage config access.
FieldStorageConfigAccessControlHandlerTest::$entity property core/modules/field/tests/src/Unit/FieldStorageConfigAccessControlHandlerTest.php The FieldStorageConfig entity used for testing.
FieldStorageConfigAccessControlHandlerTest::$member property core/modules/field/tests/src/Unit/FieldStorageConfigAccessControlHandlerTest.php The mock account with field storage config access.
FieldStorageConfigAccessControlHandlerTest::$moduleHandler property core/modules/field/tests/src/Unit/FieldStorageConfigAccessControlHandlerTest.php The mock module handler.
FieldStorageConfigAccessControlHandlerTest::assertAllowOperations function core/modules/field/tests/src/Unit/FieldStorageConfigAccessControlHandlerTest.php Assert method to verify the access by operations.
FieldStorageConfigAccessControlHandlerTest::setUp function core/modules/field/tests/src/Unit/FieldStorageConfigAccessControlHandlerTest.php

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.