Skip Navigation
Docs

What are Actions?

Actions are ran after form submission & field validation. They can utilize the submitted field data, add new data or ultimately still reject the submission.

Combining these actions, you can create complex, multi-dimensional workflows for your forms, without leaving the Kirby Panel.

Available Actions

Actions created by the community

  • None

Configuring Actions

By default, all registered and configured actions are available, but you can customize the available actions in your config.php.

// site/config/config.php

return [
  'tobimori.dreamform' => [
    'actions' => [
      'available' => ['abort', 'conditional', 'redirect', 'webhook', /* other actions here */ ],
    ],
  ],
];

Options

tobimori.dreamform.actions. Default Accepts Description
available true boolean|array Available actions, true enables all actions