You are here

function ctools_ajax_sample_configure_sheep_submit in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 ctools_ajax_sample/ctools_ajax_sample.module \ctools_ajax_sample_configure_sheep_submit()

Submit the sheep and store the values from the form.

File

ctools_ajax_sample/ctools_ajax_sample.module, line 540
Sample AJAX functionality so people can see some of the CTools AJAX features in use.

Code

function ctools_ajax_sample_configure_sheep_submit(&$form, &$form_state) {
  $form_state['object']->name = $form_state['values']['name'];
  $form_state['object']->sheep = $form_state['values']['sheep'];
}