PATH:
home
/
lab2454c
/
igpma.com
/
wp-content
/
plugins
/
wp-webhooks
/
core
/
includes
/
integrations
/
givewp
/
triggers
<?php // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; if ( ! class_exists( 'WP_Webhooks_Integrations_givewp_Triggers_give_donation_pending' ) ) : /** * Load the give_donation_pending trigger * * @since 4.3.4 * @author Ironikus <info@ironikus.com> */ class WP_Webhooks_Integrations_givewp_Triggers_give_donation_pending { public function get_details(){ $translation_ident = "action-give_donation_pending-description"; $validated_forms = array(); if( function_exists( 'give_get_payment_statuses' ) ){ $give_helpers = WPWHPRO()->integrations->get_helper( 'givewp', 'give_helpers' ); $validated_forms = $give_helpers->get_payment_forms(); } $parameter = array( 'payment_id' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Integer) The id of the current payment.', $translation_ident ) ), 'old_status' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The previous status of the payment.', $translation_ident ) ), 'payment' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Array) All related data to the payment itself.', $translation_ident ) ), ); $description = WPWHPRO()->webhook->get_endpoint_description( 'trigger', array( 'webhook_name' => 'Donation pending', 'webhook_slug' => 'give_donation_pending', 'post_delay' => true, 'trigger_hooks' => array( array( 'hook' => 'give_update_payment_status', ), ), 'tipps' => array( WPWHPRO()->helpers->translate( 'You can fire this trigger as well on specific statuses only. To do that, simply specify the status slugs within the webhook URL settings.', $translation_ident ), ) ) ); $settings = array( 'load_default_settings' => true, 'data' => array( 'wpwhpro_givewp_trigger_on_selected_forms' => array( 'id' => 'wpwhpro_givewp_trigger_on_selected_forms', 'type' => 'select', 'multiple' => true, 'choices' => $validated_forms, 'label' => WPWHPRO()->helpers->translate( 'Trigger on selected forms', $translation_ident ), 'placeholder' => '', 'required' => false, 'description' => WPWHPRO()->helpers->translate( 'Select only the give forms you want to fire the trigger on. You can also choose multiple ones. If none is selected, all are triggered.', $translation_ident ) ), ) ); return array( 'trigger' => 'give_donation_pending', 'name' => WPWHPRO()->helpers->translate( 'Donation pending', $translation_ident ), 'sentence' => WPWHPRO()->helpers->translate( 'a donation is pending', $translation_ident ), 'parameter' => $parameter, 'settings' => $settings, 'returns_code' => $this->get_demo( array() ), 'short_description' => WPWHPRO()->helpers->translate( 'This webhook fires as soon as a donation is pending within GiveWP.', $translation_ident ), 'description' => $description, 'integration' => 'givewp', 'premium' => true, ); } public function get_demo( $options = array() ) { $data = array ( 'payment_id' => 9068, 'old_status' => 'revoked', 'payment' => array ( 'id' => 9068, 'new' => false, 'number' => '4', 'mode' => 'test', 'import' => false, 'key' => 'cef202ecf786c63c85db6c8abea45767', 'form_title' => 'Donation Form', 'form_id' => '9063', 'price_id' => '3', 'total' => 100, 'subtotal' => 100, 'date' => '2022-01-24 04:36:00', 'post_date' => '2022-01-24 04:36:00', 'completed_date' => false, 'status' => 'pending', 'status_nicename' => 'Pending', 'customer_id' => '1', 'donor_id' => '1', 'user_id' => 1, 'title_prefix' => '', 'first_name' => 'Demo', 'last_name' => 'User', 'email' => 'demo@user.test', 'address' => array ( 'line1' => '', 'line2' => '', 'city' => '', 'state' => '', 'zip' => '', 'country' => 'US', ), 'transaction_id' => 9068, 'ip' => '127.0.0.1', 'gateway' => 'manual', 'currency' => 'USD', 'parent_payment' => 0, ), ); return $data; } } endif; // End if class_exists check.
[-] give_donation_cancelled.php
[edit]
[-] index.php
[edit]
[-] give_donation_abandoned.php
[edit]
[+]
..
[-] give_donation_processed.php
[edit]
[-] give_donation_completed.php
[edit]
[-] give_donation_refunded.php
[edit]
[-] give_donation_pending.php
[edit]
[-] give_donation_revoked.php
[edit]
[-] give_donation_failed.php
[edit]
[-] give_donation_preapproved.php
[edit]