PluginProbe
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster / 1.1.0
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster v1.1.0
2.7.0 2.6.0 trunk 1.1.0 1.1.4 1.2.1 1.2.2 1.2.3 1.2.5 1.2.9 1.3.1 1.3.2 1.5.0 1.5.1 1.5.4 1.5.7 1.5.8 1.5.9 1.6.2 1.6.5 1.6.8 1.7.2 1.7.4 1.7.5 1.7.9 All 43 releases
sellkit / includes / core / update / updater-functions.php

updater-functions.php in SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster 1.1.0, at includes/core/update/updater-functions.php

25 lines 343 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Sellkit\Core\Update;
4
5 use Sellkit\Core\Install;
6
7 defined( 'ABSPATH' ) || die();
8
9 /**
10 * Class Updater functions.
11 *
12 * @since 1.1.0
13 */
14 class Updater_Functions {
15
16 /**
17 * First background process updating function.
18 *
19 * @since 1.1.0
20 */
21 public function check_database_tables() {
22 Install::check_database_tables();
23 }
24 }
25