1 entity.query.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
- core/
modules/ entity/ entity.query.inc, line 661 - Entity query API.
Class
- EntityFieldQuery
- Retrieves entities matching a given set of conditions.
Code
public function deleted($deleted = TRUE) {
$this->deleted = $deleted;
return $this;
}