You are here

function role_login_page_help in Multiple role login pages 7

Same name and namespace in other branches
  1. 8 role_login_page.module \role_login_page_help()

Implements hook_help().

File

./role_login_page.module, line 8

Code

function role_login_page_help($page, $arg) {
  switch ($page) {
    case 'admin/help#role_login_page':
      return t('This module is designed to create multiple login pages based on roles.
                The new login page will have everything configurable from the backend, i.e, "username field label", "password field label", "Error messages" and more.
                For example : If the new login page will have role "A" assigned to it then the users with role "A" can only login through this page.');
  }
}