You are here

function ife_text_format_prerender in Inline Form Errors 7

Pre render function for any elements that need special attention.

1 string reference to 'ife_text_format_prerender'
ife_alter_form_element in ./ife.module
Function to add our custom theme to the element

File

./ife.module, line 276
Drupal hooks

Code

function ife_text_format_prerender($element) {
  switch ($element['#type']) {
    case 'text_format':

      // Make sure that text_format sub-elements get filtered.
      ife_filter_form($element, $element['#display_type']);
      break;
    case 'date_popup':
    case 'date_select':
    case 'date_text':

      // Date's process functions unhelpfully replace the #theme_wrappers.
      $element['#theme_wrappers'][] = 'ife_form_element';
  }
  return $element;
}