function og_group_entity_uri in Organic groups 7
Returns the URI of a group entity.
1 string reference to 'og_group_entity_uri'
- og_entity_info in ./
og.module - Implements hook_entity_info().
File
- ./
og.module, line 1370 - Enable users to create and manage groups with roles and permissions.
Code
function og_group_entity_uri($group) {
return $group
->uri();
}