function og_help in Organic groups 5.3
Same name and namespace in other branches
- 5.8 og.module \og_help()
- 5 og.module \og_help()
- 5.2 og.module \og_help()
- 5.7 og.module \og_help()
- 6.2 og.module \og_help()
- 6 og.module \og_help()
- 7.2 og.module \og_help()
- 7 og.module \og_help()
1 string reference to 'og_help'
- og_uninstall in ./
og.install
File
- ./
og.module, line 21
Code
function og_help($section) {
switch ($section) {
case !empty($section) && strstr($section, 'admin/build/block/configure/og'):
return t('Group specific blocks are only visible on group pages and not on systemwide pages like the home page or admin pages.');
case 'admin/settings/og':
return t('In order to let group admins determine their own group theme, you must enable multiple themes using !page.', array(
'!page' => l(t('theme configuration page'), 'admin/build/themes'),
));
}
}