function EntityFieldQuery::deleted

Filters on the data being deleted.

Parameters

$deleted: TRUE to only return deleted data, FALSE to return non-deleted data, EntityFieldQuery::RETURN_ALL to return everything. Defaults to FALSE.

Return value

EntityFieldQuery The called object.

File

includes/entity.inc, line 1107

Class

EntityFieldQuery
Retrieves entities matching a given set of conditions.

Code

public function deleted($deleted = TRUE) {
    $this->deleted = $deleted;
    return $this;
}

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