-
-
Save jqn/59ac51c349c1282842e1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @file | |
* Demo module, Basic Ajax form submit (Ajax framework). | |
*/ | |
/** | |
* Implements hook_menu(). | |
*/ | |
function demo_menu() { | |
return array( | |
'demo/newsletter' => array( | |
'page callback' => 'drupal_get_form', | |
'page arguments' => array('demo_demo_form'), | |
'access callback' => TRUE, | |
'type' => MENU_CALLBACK, | |
), | |
); | |
} | |
/** | |
* A simple newsletter subscribe form. | |
*/ | |
function demo_demo_form($form, &$form_state) { | |
return array( | |
'email' => array( | |
'#type' => 'textfield', | |
'#title' => t('Join our Newsletter'), | |
'#required' => TRUE, | |
'#attributes' => array( | |
'placeholder' => t('[email protected]'), | |
), | |
), | |
'submit' => array( | |
'#type' => 'submit', | |
'#value' => t('Subscribe'), | |
'#ajax' => array( | |
'callback' => 'demo_form_ajax_submit', | |
'wrapper' => 'demo-demo-form', | |
'method' => 'replace', | |
'effect' => 'fade', | |
), | |
), | |
); | |
} | |
/** | |
* Ajax callback function. | |
*/ | |
function demo_form_ajax_submit($form, $form_state) { | |
// Dummy/dumb validation for demo purpose. | |
if (!empty($form_state['input']['email'])) { | |
return 'Subscribed !'; | |
} | |
else { | |
return $form; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment