You are here

function commerce_email_variable_group_info in Commerce Email 7.2

Implements hook_variable_group_info()

File

./commerce_email.variable.inc, line 10

Code

function commerce_email_variable_group_info() {

  // Group for variable that have no group
  $groups['commerce_email'] = array(
    'title' => t('Commerce Email'),
    'description' => t("Emails used in Drupal Commerce."),
    'access' => 'administer commerce email',
  );
  return $groups;
}