Elgg
Version 6.1
|
Relationships table database service. More...
Public Member Functions | |
__construct (protected Database $db, protected EntityTable $entities, protected MetadataTable $metadata, protected EventsService $events) | |
Constructor. More... | |
get (int $id) | |
Get a relationship by its ID. More... | |
delete (int $id) | |
Delete a relationship by its ID. More... | |
add (\ElggRelationship $relationship, bool $return_id=false) | |
Create a relationship between two entities. More... | |
check (int $guid_one, string $relationship, int $guid_two) | |
Check if a relationship exists between two entities. More... | |
remove (int $guid_one, string $relationship, int $guid_two) | |
Delete a relationship between two entities. More... | |
removeAll (int $guid, string $relationship= '', bool $inverse_relationship=false, string $type= '', bool $trigger_events=true) | |
Removes all relationships originating from a particular entity. More... | |
getEntitiesFromCount (array $options=[]) | |
Gets the number of entities by a the number of entities related to them in a particular way. More... | |
rowToElggRelationship (\stdClass $row) | |
Convert a database row to a new . More... | |
Public Attributes | |
const | RELATIONSHIP_COLUMN_LENGTH = 255 |
const | TABLE_NAME = 'entity_relationships' |
const | DEFAULT_JOIN_ALIAS = 'r' |
Protected Member Functions | |
removeAllWithoutEvents (int $guid, string $relationship= '', bool $inverse_relationship=false, string $type= '') | |
Removes all relationships originating from a particular entity. More... | |
removeAllWithEvents (int $guid, string $relationship= '', bool $inverse_relationship=false, string $type= '') | |
Removes all relationships originating from a particular entity. More... | |
Relationships table database service.
Definition at line 21 of file RelationshipsTable.php.
Elgg\Database\RelationshipsTable::__construct | ( | protected Database | $db, |
protected EntityTable | $entities, | ||
protected MetadataTable | $metadata, | ||
protected EventsService | $events | ||
) |
Constructor.
Database | $db | Elgg Database |
EntityTable | $entities | Entity table |
MetadataTable | $metadata | Metadata table |
EventsService | $events | Events service |
Definition at line 42 of file RelationshipsTable.php.
Elgg\Database\RelationshipsTable::add | ( | \ElggRelationship | $relationship, |
bool | $return_id = false |
||
) |
Create a relationship between two entities.
E.g. friendship, group membership, site membership.
This function lets you make the statement "$guid_one is a $relationship of $guid_two". In the statement, $guid_one is the subject of the relationship, $guid_two is the target, and $relationship is the type.
\ElggRelationship | $relationship | the relationship to create |
bool | $return_id | Return the ID instead of bool? |
LengthException |
Definition at line 98 of file RelationshipsTable.php.
Elgg\Database\RelationshipsTable::check | ( | int | $guid_one, |
string | $relationship, | ||
int | $guid_two | ||
) |
Check if a relationship exists between two entities.
If so, the relationship object is returned.
This function lets you ask "Is $guid_one a $relationship of $guid_two?"
int | $guid_one | GUID of the subject entity of the relationship |
string | $relationship | Type of the relationship |
int | $guid_two | GUID of the target entity of the relationship |
Definition at line 162 of file RelationshipsTable.php.
Elgg\Database\RelationshipsTable::delete | ( | int | $id | ) |
Delete a relationship by its ID.
int | $id | Relationship ID |
Definition at line 72 of file RelationshipsTable.php.
Elgg\Database\RelationshipsTable::get | ( | int | $id | ) |
Get a relationship by its ID.
int | $id | The relationship ID |
Definition at line 57 of file RelationshipsTable.php.
Elgg\Database\RelationshipsTable::getEntitiesFromCount | ( | array | $options = [] | ) |
Gets the number of entities by a the number of entities related to them in a particular way.
This is a good way to get out the users with the most friends, or the groups with the most members.
array | $options | An options array compatible with elgg_get_entities() |
Definition at line 347 of file RelationshipsTable.php.
Elgg\Database\RelationshipsTable::remove | ( | int | $guid_one, |
string | $relationship, | ||
int | $guid_two | ||
) |
Delete a relationship between two entities.
This function lets you say "$guid_one is no longer a $relationship of $guid_two."
int | $guid_one | GUID of the subject entity of the relationship |
string | $relationship | Type of the relationship |
int | $guid_two | GUID of the target entity of the relationship |
Definition at line 185 of file RelationshipsTable.php.
Elgg\Database\RelationshipsTable::removeAll | ( | int | $guid, |
string | $relationship = '' , |
||
bool | $inverse_relationship = false , |
||
string | $type = '' , |
||
bool | $trigger_events = true |
||
) |
Removes all relationships originating from a particular entity.
int | $guid | GUID of the subject or target entity (see $inverse) |
string | $relationship | Type of the relationship (optional, default is all relationships) |
bool | $inverse_relationship | Is $guid the target of the deleted relationships? By default, $guid is the subject of the relationships. |
string | $type | The type of entity related to $guid (defaults to all) |
bool | $trigger_events | Trigger the delete event for each relationship (default: true) |
Definition at line 206 of file RelationshipsTable.php.
|
protected |
Removes all relationships originating from a particular entity.
The does trigger the delete event for each relationship
int | $guid | GUID of the subject or target entity (see $inverse) |
string | $relationship | Type of the relationship (optional, default is all relationships) |
bool | $inverse_relationship | Is $guid the target of the deleted relationships? By default, $guid is the subject of the relationships. |
string | $type | The type of entity related to $guid (defaults to all) |
Definition at line 270 of file RelationshipsTable.php.
|
protected |
Removes all relationships originating from a particular entity.
This doesn't trigger the delete event for each relationship
int | $guid | GUID of the subject or target entity (see $inverse) |
string | $relationship | Type of the relationship (optional, default is all relationships) |
bool | $inverse_relationship | Is $guid the target of the deleted relationships? By default, $guid is the subject of the relationships. |
string | $type | The type of entity related to $guid (defaults to all) |
Definition at line 227 of file RelationshipsTable.php.
Elgg\Database\RelationshipsTable::rowToElggRelationship | ( | \stdClass | $row | ) |
Convert a database row to a new .
\stdClass | $row | Database row from the relationship table |
Definition at line 362 of file RelationshipsTable.php.
const Elgg\Database\RelationshipsTable::DEFAULT_JOIN_ALIAS = 'r' |
Definition at line 32 of file RelationshipsTable.php.
const Elgg\Database\RelationshipsTable::RELATIONSHIP_COLUMN_LENGTH = 255 |
Definition at line 28 of file RelationshipsTable.php.
const Elgg\Database\RelationshipsTable::TABLE_NAME = 'entity_relationships' |
Definition at line 30 of file RelationshipsTable.php.