You are here

function asaf_example_gui_buttons_button_process in Asaf (ajax submit for any form) 8

Same name and namespace in other branches
  1. 7 modules/asaf_example/asaf_example.gui.buttons.inc \asaf_example_gui_buttons_button_process()
1 string reference to 'asaf_example_gui_buttons_button_process'
asaf_example_gui_buttons in modules/asaf_example/asaf_example.gui.buttons.inc

File

modules/asaf_example/asaf_example.gui.buttons.inc, line 67

Code

function asaf_example_gui_buttons_button_process($element) {
  $element['#value'] .= isset($element['#ajax']) ? ' (ajaxified)' : '';
  return $element;
}