|
| 1 | +# Form Actions API |
| 2 | + |
| 3 | +Creating a Breakdance Form Action involves two steps |
| 4 | + |
| 5 | +1. Create an Action class to represent your field |
| 6 | +2. Register the action class with Breakdance |
| 7 | + |
| 8 | +# Creating an action class |
| 9 | + |
| 10 | +To get started create a new PHP class. Your class will need to extend the Breakdance base Action class `Breakdance\Forms\Actions\Action` |
| 11 | + |
| 12 | +## Required Methods |
| 13 | + |
| 14 | +There are three mandatory methods that must be implemented in your action class |
| 15 | + |
| 16 | +**name** |
| 17 | + |
| 18 | +The name method takes no arguments and returns a string that will be used to identify your action in the Form Builder Actions dropdown menu |
| 19 | + |
| 20 | +```php |
| 21 | +/** |
| 22 | + * @return string |
| 23 | + */ |
| 24 | +public function name() { |
| 25 | + return 'My Action'; |
| 26 | +} |
| 27 | +``` |
| 28 | + |
| 29 | +**slug** |
| 30 | + |
| 31 | +The slug method takes no arguments and returns a string to identify the form action. This should be unique across all form actions, so it is recommended to prefix the slug appropriately. |
| 32 | + |
| 33 | +```php |
| 34 | +/** |
| 35 | + * @return string |
| 36 | +*/ |
| 37 | +public function slug() |
| 38 | +{ |
| 39 | + return 'my_plugin_form_action'; |
| 40 | +} |
| 41 | +``` |
| 42 | + |
| 43 | +**run** |
| 44 | + |
| 45 | +The run method accepts three arguments, `$form, $settings, $extra` and is called when the form has been submitted |
| 46 | + |
| 47 | +```php |
| 48 | +/** |
| 49 | +* Log the form submission to a file |
| 50 | +* |
| 51 | +* @param array $form |
| 52 | +* @param array $settings |
| 53 | +* @param array $extra |
| 54 | +* @return array success or error message |
| 55 | +*/ |
| 56 | +public function run($form, $settings, $extra) |
| 57 | +{ |
| 58 | + try { |
| 59 | + $this->writeToFile($extra['formId'], $extra['fields']); |
| 60 | + } catch(Exception $e) { |
| 61 | + return ['type' => 'error', 'message' => $e->getMessage()]; |
| 62 | + } |
| 63 | + |
| 64 | + return ['type' => 'success', 'message' => 'Submission logged to file']; |
| 65 | +} |
| 66 | + |
| 67 | +``` |
| 68 | + |
| 69 | +### Run Arguments |
| 70 | + |
| 71 | +$**form** |
| 72 | + |
| 73 | +The form argument contains all the form fields, their builder settings and the selected values |
| 74 | + |
| 75 | +- type: the field type |
| 76 | +- name: the field name |
| 77 | +- options: an array of available options for checkbox, radio or select inputs |
| 78 | +- value: the submitted value of the field |
| 79 | +- originalValue: the default/original value of the field |
| 80 | + |
| 81 | +**$settings** |
| 82 | + |
| 83 | +The settings argument contains an array of the configured form settings from the Breakdance builder |
| 84 | + |
| 85 | +**$extra** |
| 86 | + |
| 87 | +The extra argument contains additional data |
| 88 | + |
| 89 | +- files: An array of uploaded files |
| 90 | +- fields: the submitted form fields in an `$id ⇒ $value` style array |
| 91 | +- formId: The ID of the form |
| 92 | +- postId: The ID of the post the form was submitted from |
| 93 | +- ip: the submitters IP address |
| 94 | +- referer: The form submitters referrer URL |
| 95 | +- userAgent: The form submitters user agent string |
| 96 | +- userId: The form submitters user ID (if applicable) |
| 97 | + |
| 98 | +### Responses |
| 99 | + |
| 100 | +The response should be an array that contains a `type` and `message` key. |
| 101 | + |
| 102 | +- type: either `error` or `success` |
| 103 | +- message: a string message that will be displayed to admins with the submission |
| 104 | + |
| 105 | +**Success** |
| 106 | + |
| 107 | +```php |
| 108 | +public function run($form, $settings, $extra) |
| 109 | +{ |
| 110 | + ... |
| 111 | + return ['type' => 'success', 'message' => 'Submission logged to file']; |
| 112 | +} |
| 113 | + |
| 114 | +``` |
| 115 | + |
| 116 | +**Error** |
| 117 | + |
| 118 | +```php |
| 119 | +public function run($form, $settings, $extra) |
| 120 | +{ |
| 121 | + ... |
| 122 | + return ['type' => 'error', 'message' => 'Could not write to file']; |
| 123 | +} |
| 124 | +``` |
| 125 | + |
| 126 | +## Register The Action |
| 127 | + |
| 128 | +Register the action by calling the registerAction helper and passing an instance of your action class |
| 129 | + |
| 130 | +**Note:** To prevent file loading race conditions, it is recommended to call the register helper from inside a WordPress action, e.g init. |
| 131 | + |
| 132 | +```php |
| 133 | + |
| 134 | +// register-actions.php included by your plugin |
| 135 | + |
| 136 | +add_action('init', function() { |
| 137 | + // fail if Breakdance is not installed and available |
| 138 | + if (!function_exists('\Breakdance\Forms\Actions\registerAction') || !class_exists('\Breakdance\Forms\Actions\Action')) { |
| 139 | + return; |
| 140 | + } |
| 141 | + |
| 142 | + require_once('my-action.php'); |
| 143 | + |
| 144 | + \Breakdance\Forms\Actions\registerAction(new MyAction()); |
| 145 | + |
| 146 | +}); |
| 147 | +``` |
0 commit comments