You are here

function select_or_other_process_form_element in Select (or other) 7.3

Implements hook_process_HOOK().

File

./select_or_other.module, line 203
The Select (or other) module.

Code

function select_or_other_process_form_element(&$variables) {

  // Hide the title from the wrapper.
  if (isset($variables['element']['#theme']) && $variables['element']['#theme'] === 'select_or_other') {
    $variables['element']['#title'] = NULL;
  }
}