You are here

function theme_og_format_subscriber_status in Organic groups 6

Same name and namespace in other branches
  1. 5.8 og.module \theme_og_format_subscriber_status()
  2. 5 og.module \theme_og_format_subscriber_status()
  3. 5.2 og.module \theme_og_format_subscriber_status()
  4. 5.3 og.module \theme_og_format_subscriber_status()
  5. 5.7 og.module \theme_og_format_subscriber_status()
  6. 6.2 og.module \theme_og_format_subscriber_status()
1 theme call to theme_og_format_subscriber_status()
og_user in ./og.module

File

./og.module, line 2616

Code

function theme_og_format_subscriber_status($group) {
  if (!$group['is_active']) {
    return ' ' . t('(pending approval)');
  }
}