??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/mayshine.co.uk/wp-content/plugins/wpforms-lite/src/Migrations/Upgrade1_9_1.php
⬅ Kembali
<?php
namespace WPForms\Migrations;
/**
* Class upgrade for 1.9.1 release.
*
* @since 1.9.1
*/
class Upgrade1_9_1 extends UpgradeBase {
/**
* Delete existed notifications for the customer.
*
* @since 1.9.1
*
* @return bool|null Upgrade result:
* true - the upgrade completed successfully,
* false - in the case of failure,
* null - upgrade started but not yet finished (background task).
*/
public function run() {
$this->clean_summaries_cron_event();
$notifications_option_key = 'wpforms_notifications';
$notifications = get_option( $notifications_option_key, [] );
if ( empty( $notifications['events'] ) ) {
return true;
}
$notifications['events'] = [];
update_option( 'wpforms_notifications', $notifications );
return true;
}
/**
* Clean summaries and entries count cron events,
* Since the 1.9.1 release these cron events recurrences have been changed to single event.
* The events will be recreated on the next page load.
*
* @since 1.9.1
*/
private function clean_summaries_cron_event() {
if ( wp_next_scheduled( 'wpforms_weekly_entries_count_cron' ) ) {
wp_clear_scheduled_hook( 'wpforms_weekly_entries_count_cron' );
}
if ( wp_next_scheduled( 'wpforms_email_summaries_cron' ) ) {
wp_clear_scheduled_hook( 'wpforms_email_summaries_cron' );
}
}
}
Nama
Tipe
Ukuran
Diubah
Aksi
📁 Tasks
dir
—
2026-06-23 08:04
📄 .htaccess
htaccess
237 B
2026-06-23 08:04
🐘 Base.php
php
12 KB
2026-03-19 16:20
🐘 Migrations.php
php
992 B
2025-12-11 20:10
🐘 Upgrade159.php
php
707 B
2024-09-26 15:36
🐘 Upgrade1672.php
php
863 B
2022-06-30 15:09
🐘 Upgrade168.php
php
1.2 KB
2024-09-26 15:36
🐘 Upgrade175.php
php
2.7 KB
2024-09-26 15:36
🐘 Upgrade1751.php
php
562 B
2022-08-18 14:59
🐘 Upgrade177.php
php
1.2 KB
2022-09-29 15:18
🐘 Upgrade182.php
php
3.1 KB
2025-12-11 20:10
🐘 Upgrade183.php
php
769 B
2023-08-10 15:19
🐘 Upgrade184.php
php
909 B
2023-09-28 15:44
🐘 Upgrade186.php
php
395 B
2024-01-16 17:57
🐘 Upgrade187.php
php
1.4 KB
2024-09-26 15:36
🐘 Upgrade1_9_1.php
php
1.4 KB
2024-09-26 15:36
🐘 Upgrade1_9_2.php
php
911 B
2024-11-07 17:15
🐘 Upgrade1_9_7.php
php
333 B
2025-08-11 13:38
🐘 Upgrade1_9_8_6.php
php
2.7 KB
2025-12-11 20:10
🐘 UpgradeBase.php
php
3.4 KB
2025-04-24 14:53