FormActionTypes.php
6 days ago
FormEmailBodyPartTypes.php
6 days ago
FormFieldTypes.php
6 days ago
FormWebhookMethods.php
6 days ago
FormWebhookMethods.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Kirki\App\Constants\Form; |
| 4 | |
| 5 | defined('ABSPATH') || exit; |
| 6 | |
| 7 | use Kirki\Framework\Concerns\HasConstants; |
| 8 | |
| 9 | /** |
| 10 | * Supported HTTP methods for a webhook action. |
| 11 | * |
| 12 | * These values mirror the `method` key stored on a form's `webhooks` action |
| 13 | * configuration. |
| 14 | */ |
| 15 | class FormWebhookMethods |
| 16 | { |
| 17 | use HasConstants; |
| 18 | |
| 19 | const GET = 'get'; |
| 20 | const POST = 'post'; |
| 21 | } |
| 22 |