function field_has_data

Determine whether a field has any data.

Parameters

$field: A field structure.

Return value

TRUE if the field has data for any entity; FALSE otherwise.

Related topics

4 calls to field_has_data()

File

drupal/modules/field/field.module, line 953
Attach custom data fields to Drupal entities.

Code

function field_has_data($field) {
  $query = new EntityFieldQuery();
  $query = $query
    ->fieldCondition($field)
    ->range(0, 1)
    ->count()
    ->addTag('DANGEROUS_ACCESS_CHECK_OPT_OUT');
  return (bool) $query
    ->execute() || (bool) $query
    ->age(FIELD_LOAD_REVISION)
    ->execute();
}