function theme_og_format_subscriber_status in Organic groups 6
Same name and namespace in other branches
- 5.8 og.module \theme_og_format_subscriber_status()
- 5 og.module \theme_og_format_subscriber_status()
- 5.2 og.module \theme_og_format_subscriber_status()
- 5.3 og.module \theme_og_format_subscriber_status()
- 5.7 og.module \theme_og_format_subscriber_status()
- 6.2 og.module \theme_og_format_subscriber_status()
File
- ./
og.module, line 2616
Code
function theme_og_format_subscriber_status($group) {
if (!$group['is_active']) {
return ' ' . t('(pending approval)');
}
}