You are here

function og_help in Organic groups 5.2

Same name and namespace in other branches
  1. 5.8 og.module \og_help()
  2. 5 og.module \og_help()
  3. 5.3 og.module \og_help()
  4. 5.7 og.module \og_help()
  5. 6.2 og.module \og_help()
  6. 6 og.module \og_help()
  7. 7.2 og.module \og_help()
  8. 7 og.module \og_help()
1 string reference to 'og_help'
og_admin_settings in ./og.module

File

./og.module, line 32

Code

function og_help($section) {
  switch ($section) {
    case 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'),
      ));
  }
}