You are here

function front_page_help in Front Page 7.2

Same name and namespace in other branches
  1. 8 front_page.module \front_page_help()
  2. 5 front_page.module \front_page_help()
  3. 6.2 front_page.module \front_page_help()
  4. 6 front_page.module \front_page_help()
  5. 7 front_page.module \front_page_help()
  6. 9.1.x front_page.module \front_page_help()

Implements hook_help().

File

./front_page.module, line 18

Code

function front_page_help($section) {
  switch ($section) {
    case 'admin/config/front/settings':
      return t('<p>Setup custom front pages for your site.</p>');
    case 'admin/config/front/arrange':
      return t('<p>Arrange the order in which roles will be checked for custom front page settings. Roles will be processed from top to bottom. To enable other roles you must first enable them in the !link.</p>', array(
        '!link' => l(t('Settings tab'), 'admin/config/front/settings'),
      ));
    case 'admin/config/front/home-links':
      return t('<p>If a HOME link is set, the &lt;front&gt; placeholder will be replaced with this value instead of the standard front page.</p>');
  }
}