You are here

function prlp_variable_group_info in Password Reset Landing Page (PRLP) 7

Implements hook_variable_group_info().

File

./prlp.module, line 293
Password Reset Landing Page module.

Code

function prlp_variable_group_info() {
  $groups['prlp_settings'] = array(
    'title' => t('Password reset settings'),
    'description' => t('Settings of the prlp module.'),
  );
  return $groups;
}