Give_Payment::process_pending PHP Method

process_pending() private method

Process when a payment moves to pending
Since: 1.5
private process_pending ( ) : void
return void
    private function process_pending()
    {
        $process_pending = true;
        // If the payment was not in publish or revoked status, don't decrement stats as they were never incremented
        if ('publish' != $this->old_status || 'pending' != $this->status) {
            $process_pending = false;
        }
        // Allow extensions to filter for their own payment types, Example: Recurring Payments
        $process_pending = apply_filters('give_should_process_pending', $process_pending, $this);
        if (false === $process_pending) {
            return;
        }
        $decrease_store_earnings = apply_filters('give_decrease_store_earnings_on_pending', true, $this);
        $decrease_customer_value = apply_filters('give_decrease_customer_value_on_pending', true, $this);
        $decrease_purchase_count = apply_filters('give_decrease_customer_purchase_count_on_pending', true, $this);
        $this->maybe_alter_stats($decrease_store_earnings, $decrease_customer_value, $decrease_purchase_count);
        $this->delete_sales_logs();
        $this->completed_date = false;
        $this->update_meta('_give_completed_date', '');
        // Clear the This Month earnings (this_monththis_month is NOT a typo)
        delete_transient(md5('give_earnings_this_monththis_month'));
    }