batch_example_simple_form

6 batch_example.module batch_example_simple_form()
7 batch_example.module batch_example_simple_form()
8 batch_example.module batch_example_simple_form()

Test 1 : Simple form

Related topics

1 string reference to 'batch_example_simple_form'

File

batch_example/batch_example.module, line 75
This is an example outlining how a module can define batches.

Code

function batch_example_simple_form() {
  $form['batch'] = array(
    '#type' => 'select', 
    '#title' => 'Choose batch', 
    '#options' => array(
      'batch_1' => 'batch 1 - load a node 100 times', 
      'batch_2' => 'batch 2 - load all nodes, 20 times',
    ),
  );
  $form['submit'] = array(
    '#type' => 'submit', 
    '#value' => 'Go',
  );

  return $form;
}
Login or register to post comments