You are here

function mandrill_variable_group_info in Mandrill 7.2

Same name and namespace in other branches
  1. 7 mandrill.variable.inc \mandrill_variable_group_info()

Implements hook_variable_group_info().

File

./mandrill.variable.inc, line 11
Mandrill variable hooks.

Code

function mandrill_variable_group_info() {
  $groups['mandrill'] = array(
    'title' => t('Mandrill'),
    'description' => t('Settings related to Mandrill.'),
    'access' => 'administer mandrill',
    'path' => array(
      'admin/config/services/mandrill',
    ),
  );
  return $groups;
}