You are here

asaf_example.gui.needed_files.inc in Asaf (ajax submit for any form) 8

Same filename and directory in other branches
  1. 7 modules/asaf_example/tests/asaf_example.gui.needed_files.inc

File

modules/asaf_example/tests/asaf_example.gui.needed_files.inc
View source
<?php

function asaf_example_gui_needed_files($form, &$form_state) {
  $form['email'] = array(
    '#type' => 'textfield',
    '#title' => t('Email'),
  );
  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Check email'),
  );
  module_load_include('inc', 'asaf_example', 'tests/asaf_example.gui.needed_files.handlers');
  $form['#validate'][] = 'asaf_example_gui_needed_files_validate';
  $form['#submit'][] = 'asaf_example_gui_needed_files_submit';
  return $form;
}

Functions