You are here

function og_is_node_group_content_summary in Organic groups 7.2

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

Provide a summary description based upon the specified context

1 string reference to 'og_is_node_group_content_summary'
og_is_node_group_content.inc in plugins/access/og_is_node_group_content.inc

File

plugins/access/og_is_node_group_content.inc, line 33

Code

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