You are here

function filefield_paths_variable_group_info in File (Field) Paths 7

Implements hook_variable_group_info().

Return value

mixed

File

./filefield_paths.variable.inc, line 46
Contains Variable functions for the File (Field) Paths module.

Code

function filefield_paths_variable_group_info() {
  $groups['filefield_paths'] = array(
    'title' => t('File (Field) Paths'),
    'description' => t('File (Field) Paths settings.'),
    'access' => 'administer site configuration',
    'path' => array(
      'admin/config/media/file-system/filefield-paths',
    ),
  );
  return $groups;
}