PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / trunk
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses vtrunk
4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 4.2.1 4.2.1.1 All 137 releases
learnpress / config / settings / webhook.php

webhook.php in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses trunk, at config/settings/webhook.php

27 lines 646 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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