function olark_variable_info in Olark Chat 7
Implements hook_variable_info().
File
- ./
olark.variable.inc, line 11 - Multilingual support.
Code
function olark_variable_info($options) {
$variables['olark_code'] = array(
'type' => 'text',
'title' => t('Olark Code', array(), $options),
'description' => t('Olark Code and settings.', array(), $options),
'required' => TRUE,
'localize' => TRUE,
'group' => 'olark',
);
return $variables;
}