disableEntities() public method

Disables all entities owned and contained by a user (or another entity)
public disableEntities ( integer $owner_guid ) : boolean
$owner_guid integer The owner GUID
return boolean
コード例 #1
0
ファイル: UsersTable.php プロジェクト: elgg/elgg
 /**
  * Disables all of a user's entities
  *
  * @param int $owner_guid The owner GUID
  * @return bool Depending on success
  * @deprecated 2.3
  */
 public function disableEntities($owner_guid)
 {
     return $this->entities->disableEntities($owner_guid);
 }