X7ROOT File Manager
Current Path:
/home/hikrsdyp/public_html/wp-content/plugins/wpforms-lite/src/Migrations
home
/
hikrsdyp
/
public_html
/
wp-content
/
plugins
/
wpforms-lite
/
src
/
Migrations
/
??
..
??
Base.php
(12 KB)
??
Migrations.php
(972 B)
??
Tasks
??
Upgrade159.php
(707 B)
??
Upgrade1672.php
(863 B)
??
Upgrade168.php
(1.24 KB)
??
Upgrade175.php
(2.67 KB)
??
Upgrade1751.php
(562 B)
??
Upgrade177.php
(1.21 KB)
??
Upgrade182.php
(3.04 KB)
??
Upgrade183.php
(769 B)
??
Upgrade184.php
(909 B)
??
Upgrade186.php
(395 B)
??
Upgrade187.php
(1.35 KB)
??
Upgrade1_9_1.php
(1.37 KB)
??
Upgrade1_9_2.php
(911 B)
??
Upgrade1_9_7.php
(333 B)
??
UpgradeBase.php
(3.43 KB)
Editing: Upgrade1_9_2.php
<?php namespace WPForms\Migrations; use WPForms\Integrations\Stripe\Helpers; use WPForms\Tasks\Actions\WebhooksAutoConfigurationTask; /** * Class upgrade for 1.9.2 release. * * @since 1.9.2 * * @noinspection PhpUnused */ class Upgrade1_9_2 extends UpgradeBase { /** * Run upgrade. * * @since 1.9.2 * * @return bool|null */ public function run() { $this->set_webhooks_settings(); return $this->run_async( WebhooksAutoConfigurationTask::class ); } /** * Set Stripe webhooks settings. * * @since 1.9.2 */ private function set_webhooks_settings() { $settings = (array) get_option( 'wpforms_settings', [] ); // Enable Stripe webhooks by default if account is connected. if ( ! isset( $settings['stripe-webhooks-enabled'] ) && Helpers::has_stripe_keys() ) { $settings['stripe-webhooks-enabled'] = true; update_option( 'wpforms_settings', $settings ); } } }
Upload File
Create Folder