function og_rules_entity_is_group in Organic groups 7
Same name and namespace in other branches
- 7.2 og.rules.inc \og_rules_entity_is_group()
Condition: Entity is group.
1 string reference to 'og_rules_entity_is_group'
- og_rules_condition_info in ./
og.rules.inc - Implements hook_rules_condition_info().
File
- ./
og.rules.inc, line 485 - Rules integration for the Organic groups module.
Code
function og_rules_entity_is_group(EntityDrupalWrapper $entity) {
return (bool) og_get_group($entity
->type(), $entity
->getIdentifier());
}