You are here

function stage_file_proxy_variable_group_info in Stage File Proxy 7

Implements hook_variable_group_info().

File

./stage_file_proxy.variable.inc, line 10
Variable module integration.

Code

function stage_file_proxy_variable_group_info() {
  $groups['stage_file_proxy'] = array(
    'title' => t('Stage File Proxy'),
    'description' => t('Stage File Proxy variables.'),
  );
  return $groups;
}