はじまりの大地

This commit is contained in:
miteruzo
2024-07-08 03:32:47 +09:00
commit c616a96f53
7749 changed files with 478270 additions and 0 deletions
@@ -0,0 +1,19 @@
<?php
namespace dokuwiki\plugin\bureaucracy\interfaces;
interface bureaucracy_handler_interface {
/**
* Handle the data incoming from the form.
*
* @param \helper_plugin_bureaucracy_field[] $fields the list of fields in the form
* @param string $thanks the thank you message as defined in the form
* or default one. Might be modified by the action
* before returned
*
* @return bool|string false on error, $thanks on success
*
*/
public function handleData($fields, $thanks);
}