function contactinfo_variable_info in Contact Info 7
Implements hook_variable_info().
File
- ./
contactinfo.variable.inc, line 11 - Contact Info variable definitions using the Variable API.
Code
function contactinfo_variable_info($options) {
$variable['contactinfo'] = array(
'title' => t('Contact information'),
'description' => t('Contact information for this website.'),
'type' => 'array',
'default callback' => 'contactinfo_defaults',
'group' => 'contactinfo',
'localize' => TRUE,
);
return $variable;
}