You are here

function mobile_codes_variable_info in Mobile Codes 7.2

Implements hook_variable_info().

File

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

Code

function mobile_codes_variable_info() {
  $variable = array();
  $variable['mobile_codes_settings'] = array(
    'title' => t('Mobile Codes settings'),
    'type' => 'mobile_codes_settings',
    'default' => mobile_codes_defaults(),
    'access' => 'administer mobile codes',
    'group' => 'mobile_codes',
  );
  return $variable;
}