| 1 |
<?php |
| 2 |
/** |
| 3 |
* Setting tab Webhook. |
| 4 |
*/ |
| 5 |
|
| 6 |
return apply_filters( |
| 7 |
'learn_press_webhook_settings', |
| 8 |
array( |
| 9 |
array( |
| 10 |
'type' => 'title', |
| 11 |
'title' => esc_html__( 'Webhook Integration', 'learnpress' ), |
| 12 |
'id' => 'lp_metabox_webhook_general', |
| 13 |
), |
| 14 |
array( |
| 15 |
'title' => esc_html__( 'Enable Webhook', 'learnpress' ), |
| 16 |
'id' => 'enable_webhook_integration', |
| 17 |
'default' => 'no', |
| 18 |
'type' => 'checkbox', |
| 19 |
'desc' => esc_html__( 'Enable webhook delivery. Webhook events are not delivered unless this option is enabled.', 'learnpress' ), |
| 20 |
), |
| 21 |
array( |
| 22 |
'type' => 'sectionend', |
| 23 |
'id' => 'lp_metabox_webhook_general', |
| 24 |
), |
| 25 |
) |
| 26 |
); |
| 27 |
|