You are here

public function BaseFieldDefinition::isQueryable in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::isQueryable()

Determines whether the field is queryable via QueryInterface.

Return value

bool TRUE if the field is queryable.

Overrides FieldStorageDefinitionInterface::isQueryable

File

core/lib/Drupal/Core/Field/BaseFieldDefinition.php, line 294
Contains \Drupal\Core\Field\BaseFieldDefinition.

Class

BaseFieldDefinition
A class for defining entity fields.

Namespace

Drupal\Core\Field

Code

public function isQueryable() {
  return isset($this->definition['queryable']) ? $this->definition['queryable'] : !$this
    ->isComputed();
}