1 ajax_example.module ajax_example_autotextfields_callback($form, $form_state)

Callback for autotextfields.

Selects the piece of the form we want to use as replacement text and returns it as a form (renderable array).

Return value

array: The Renderable array for the textfields element.

Related topics

File

modules/examples/ajax_example/ajax_example.module, line 490
Hook implementations for the AJAX Example module.

Code

function ajax_example_autotextfields_callback($form, $form_state) {
  return $form['textfields'];
}