??????????????
??????????????
??????????????
??????????????
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/netecfwd.co.uk/wp-content/plugins/wpforms-lite/src/Migrations/Upgrade187.php
⬅ Kembali
<?php
namespace WPForms\Migrations;
use WPForms\Admin\Builder\TemplatesCache;
use WPForms\Tasks\Actions\StripeLinkSubscriptionsTask;
/**
* Class upgrade for 1.8.7 release.
*
* @since 1.8.7
*
* @noinspection PhpUnused
*/
class Upgrade187 extends UpgradeBase {
/**
* Run upgrade.
*
* @since 1.8.7
*
* @return bool|null
*/
public function run() {
$sync_result = $this->update_templates_cache() && $this->maybe_create_logs_table();
$async_result = $this->run_async( StripeLinkSubscriptionsTask::class );
return $async_result === null ? null : $sync_result && $async_result;
}
/**
* Update templates' cache.
*
* @since 1.8.7
*
* @return bool
*/
private function update_templates_cache(): bool {
$templates_cache = new TemplatesCache();
$templates_cache->init();
$templates_cache->update();
return true;
}
/**
* Maybe create logs' table.
* Previously, logs' table was created dynamically on the first access to the Tools->Logs admin page.
* As from 1.8.7, we create it only once during the activation of the plugin.
* So, the table may not exist, and we must maybe create it during migration to 1.8.7.
*
* @since 1.8.7
*
* @return bool
*/
private function maybe_create_logs_table(): bool {
$log = wpforms()->obj( 'log' );
if ( ! $log ) {
return false;
}
$log->create_table();
return true;
}
}
Nama
Tipe
Ukuran
Diubah
Aksi
📁 Tasks
dir
—
2026-06-20 08:41
🐘 Base.php
php
12 KB
2026-06-19 06:58
🐘 Migrations.php
php
992 B
2026-06-19 06:58
🐘 Upgrade159.php
php
707 B
2026-06-19 06:58
🐘 Upgrade1672.php
php
863 B
2026-06-19 06:58
🐘 Upgrade168.php
php
1.2 KB
2026-06-19 06:58
🐘 Upgrade175.php
php
2.7 KB
2026-06-19 06:58
🐘 Upgrade1751.php
php
562 B
2026-06-19 06:58
🐘 Upgrade177.php
php
1.2 KB
2026-06-19 06:58
🐘 Upgrade182.php
php
3.1 KB
2026-06-19 06:58
🐘 Upgrade183.php
php
769 B
2026-06-19 06:58
🐘 Upgrade184.php
php
909 B
2026-06-19 06:58
🐘 Upgrade186.php
php
395 B
2026-06-19 06:58
🐘 Upgrade187.php
php
1.4 KB
2026-06-19 06:58
🐘 Upgrade1_9_1.php
php
1.4 KB
2026-06-19 06:58
🐘 Upgrade1_9_2.php
php
911 B
2026-06-19 06:58
🐘 Upgrade1_9_7.php
php
333 B
2026-06-19 06:58
🐘 Upgrade1_9_8_6.php
php
2.7 KB
2026-06-19 06:58
🐘 UpgradeBase.php
php
3.4 KB
2026-06-19 06:58