You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
667 B

  1. <?php
  2. namespace dokuwiki\plugin\bureaucracy\interfaces;
  3. interface bureaucracy_handler_interface {
  4. /**
  5. * Handle the data incoming from the form.
  6. *
  7. * @param \helper_plugin_bureaucracy_field[] $fields the list of fields in the form
  8. * @param string $thanks the thank you message as defined in the form
  9. * or default one. Might be modified by the action
  10. * before returned
  11. *
  12. * @return bool|string false on error, $thanks on success
  13. *
  14. */
  15. public function handleData($fields, $thanks);
  16. }