function ife_variable_info in Inline Form Errors 7
Same name and namespace in other branches
- 7.2 ife.variable.inc \ife_variable_info()
Implements hook_variable_info().
File
- ./
ife.variable.inc, line 6
Code
function ife_variable_info($options) {
$variables = array();
$variables['ife_general_message'] = array(
'title' => t('Inline form errors alternate error message', array(), $options),
'description' => t('A general error message to display at the top of the page (default Drupal messages display).', array(), $options),
'type' => 'string',
'default' => t('Please correct all highlighted errors and try again.', array(), $options),
'localize' => TRUE,
);
return $variables;
}