public function EntityFieldQuery::deleted
7.x entity.inc | public EntityFieldQuery::deleted($deleted = TRUE) |
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
- drupal-7.x/
includes/ entity.inc, line 1028
Class
- EntityFieldQuery
- Retrieves entities matching a given set of conditions.
Code
public function deleted($deleted = TRUE) {
$this->deleted = $deleted;
return $this;
}