On this page
public function EntityFieldQuery::deleted
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 1104
Class
- EntityFieldQuery
- Retrieves entities matching a given set of conditions.
Code
public function deleted($deleted = TRUE) {
$this->deleted = $deleted;
return $this;
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!entity.inc/function/EntityFieldQuery::deleted/7.x