You are here

function social_content_variable_group_info in Social Content 7.2

Same name and namespace in other branches
  1. 7 social_content.variable.inc \social_content_variable_group_info()

Implements hook_variable_group_info().

File

./social_content.variable.inc, line 10
Social content variable file

Code

function social_content_variable_group_info() {
  $groups['social_content'] = array(
    'title' => t('Social Content'),
    'description' => t('Social Content settings'),
    'access' => 'administer site configuration',
  );
  return $groups;
}