You are here

function og_is_node_group_summary in Organic groups 7.2

Same name and namespace in other branches
  1. 7 plugins/access/og_is_node_group.inc \og_is_node_group_summary()

Provide a summary description based upon the specified context

1 string reference to 'og_is_node_group_summary'
og_is_node_group.inc in plugins/access/og_is_node_group.inc

File

plugins/access/og_is_node_group.inc, line 33

Code

function og_is_node_group_summary($conf, $context) {
  return t('@identifier is an OG group', array(
    '@identifier' => $context->identifier,
  ));
}