You are here

ife.variable.inc in Inline Form Errors 7

Same filename and directory in other branches
  1. 7.2 ife.variable.inc

File

ife.variable.inc
View source
<?php

/**
 * Implements hook_variable_info().
 */
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;
}

Functions

Namesort descending Description
ife_variable_info Implements hook_variable_info().