EntityFieldQuery::deleted

7 entity.inc public EntityFieldQuery::deleted($deleted = TRUE)
8 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

includes/entity.inc, line 1027

Code

public function deleted($deleted = TRUE) {
  $this->deleted = $deleted;
  return $this;
}
Login or register to post comments