You are here

function og_rules_entity_is_group in Organic groups 7.2

Same name and namespace in other branches
  1. 7 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 592
Rules integration for the Organic groups module.

Code

function og_rules_entity_is_group(EntityDrupalWrapper $entity) {
  return (bool) og_is_group($entity
    ->type(), $entity
    ->getIdentifier());
}