public function FieldStorageConfig::isQueryable in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/field/src/Entity/FieldStorageConfig.php \Drupal\field\Entity\FieldStorageConfig::isQueryable()
Determines whether the field is queryable via QueryInterface.
Return value
bool TRUE if the field is queryable.
Overrides FieldStorageDefinitionInterface::isQueryable
File
- core/
modules/ field/ src/ Entity/ FieldStorageConfig.php, line 693 - Contains \Drupal\field\Entity\FieldStorageConfig.
Class
- FieldStorageConfig
- Defines the Field storage configuration entity.
Namespace
Drupal\field\EntityCode
public function isQueryable() {
return TRUE;
}