BaseFieldDefinition::isQueryable

public 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 289

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();
}
doc_Drupal
2016-10-29 08:45:43
Comments
Leave a Comment

Please login to continue.