Elgg
Version 6.1
|
Go to the source code of this file.
Functions | |
elgg_get_relationship (int $id) | |
Get a relationship by its ID. More... | |
elgg_get_entities_from_relationship_count (array $options=[]) | |
Gets the number of entities by a the number of entities related to them in a particular way. More... | |
elgg_list_entities_from_relationship_count (array $options) | |
Returns a list of entities by relationship count. More... | |
elgg_get_relationships (array $options=[]) | |
Fetch relationships or perform a calculation on them. More... | |
elgg_count_relationships (array $options=[]) | |
Returns a count of relationships. More... | |
elgg_list_relationships (array $options) | |
Returns a rendered list of relationships with pagination. More... | |
elgg_count_relationships | ( | array | $options = [] | ) |
Returns a count of relationships.
array | $options | the same options as elgg_get_relationships() but forces 'count' to true |
Definition at line 76 of file relationships.php.
elgg_get_entities_from_relationship_count | ( | 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_from_relationship() |
Definition at line 30 of file relationships.php.
elgg_get_relationship | ( | int | $id | ) |
Get a relationship by its ID.
int | $id | The relationship ID |
Definition at line 16 of file relationships.php.
elgg_get_relationships | ( | array | $options = [] | ) |
Fetch relationships or perform a calculation on them.
Accepts all options supported by elgg_get_entities()
The default 'order_by' is 'er.time_created, er.id' DESC
array | $options | Options |
Definition at line 62 of file relationships.php.
elgg_list_entities_from_relationship_count | ( | array | $options | ) |
Returns a list of entities by relationship count.
array | $options | Options array |
Definition at line 44 of file relationships.php.
elgg_list_relationships | ( | array | $options | ) |
Returns a rendered list of relationships with pagination.
array | $options | Relationship getter and display options. elgg_get_relationships() and elgg_list_entities(). |
Definition at line 91 of file relationships.php.