You are here

function plupload_test in Plupload integration 7.2

Same name and namespace in other branches
  1. 7 plupload.module \plupload_test()

Form callback function for test page visible at URL "plupload-test".

1 string reference to 'plupload_test'
plupload_menu in ./plupload.module
Implements hook_menu().

File

./plupload.module, line 45
Implementation of plupload.module.

Code

function plupload_test($form, &$form_state) {
  $form['pud'] = array(
    '#type' => 'plupload',
    '#title' => 'Plupload',
  );
  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => 'Submit',
  );
  return $form;
}