Version Description
Added
- Support for MySQL BIT field type
Fixed
- WP CLI issue on export/import
Download this release
Release Info
Developer | bangelov |
Plugin | All-in-One WP Migration |
Version | 6.86 |
Comparing to | |
See all releases |
Code changes from version 6.85 to 6.86
- all-in-one-wp-migration.php +5 -1
- constants.php +5 -1
- deprecated.php +4 -0
- exceptions.php +4 -0
- functions.php +4 -0
- lib/controller/class-ai1wm-backups-controller.php +4 -0
- lib/controller/class-ai1wm-export-controller.php +4 -0
- lib/controller/class-ai1wm-feedback-controller.php +4 -0
- lib/controller/class-ai1wm-import-controller.php +4 -0
- lib/controller/class-ai1wm-main-controller.php +22 -5
- lib/controller/class-ai1wm-report-controller.php +4 -0
- lib/controller/class-ai1wm-status-controller.php +4 -0
- lib/controller/class-ai1wm-updater-controller.php +4 -0
- lib/model/class-ai1wm-backups.php +4 -0
- lib/model/class-ai1wm-compatibility.php +4 -0
- lib/model/class-ai1wm-deprecated.php +4 -0
- lib/model/class-ai1wm-extensions.php +4 -0
- lib/model/class-ai1wm-feedback.php +4 -0
- lib/model/class-ai1wm-handler.php +4 -0
- lib/model/class-ai1wm-log.php +4 -0
- lib/model/class-ai1wm-message.php +4 -0
- lib/model/class-ai1wm-notification.php +4 -0
- lib/model/class-ai1wm-report.php +4 -0
- lib/model/class-ai1wm-status.php +4 -0
- lib/model/class-ai1wm-template.php +4 -0
- lib/model/class-ai1wm-updater.php +4 -0
- lib/model/export/class-ai1wm-export-archive.php +4 -0
- lib/model/export/class-ai1wm-export-clean.php +4 -0
- lib/model/export/class-ai1wm-export-compatibility.php +4 -0
- lib/model/export/class-ai1wm-export-config-file.php +4 -0
- lib/model/export/class-ai1wm-export-config.php +4 -0
- lib/model/export/class-ai1wm-export-content.php +4 -0
- lib/model/export/class-ai1wm-export-database-file.php +4 -0
- lib/model/export/class-ai1wm-export-database.php +4 -0
- lib/model/export/class-ai1wm-export-download.php +4 -0
- lib/model/export/class-ai1wm-export-enumerate.php +4 -0
- lib/model/export/class-ai1wm-export-init.php +4 -0
- lib/model/import/class-ai1wm-import-blogs.php +4 -0
- lib/model/import/class-ai1wm-import-clean.php +4 -0
- lib/model/import/class-ai1wm-import-compatibility.php +4 -0
- lib/model/import/class-ai1wm-import-confirm.php +4 -0
- lib/model/import/class-ai1wm-import-content.php +4 -0
- lib/model/import/class-ai1wm-import-database.php +4 -0
- lib/model/import/class-ai1wm-import-done.php +4 -0
- lib/model/import/class-ai1wm-import-enumerate.php +4 -0
- lib/model/import/class-ai1wm-import-mu-plugins.php +4 -0
- lib/model/import/class-ai1wm-import-upload.php +4 -0
- lib/model/import/class-ai1wm-import-validate.php +4 -0
- lib/vendor/bandar/bandar/lib/Bandar.php +4 -0
- lib/vendor/bandar/bandar/lib/Exceptions/TemplateDoesNotExistException.php +4 -0
- lib/vendor/servmask/archiver/class-ai1wm-archiver.php +4 -0
- lib/vendor/servmask/archiver/class-ai1wm-compressor.php +4 -0
- lib/vendor/servmask/archiver/class-ai1wm-extractor.php +4 -0
- lib/vendor/servmask/command/class-ai1wm-wp-cli-command.php +4 -0
- lib/vendor/servmask/cron/class-ai1wm-cron.php +4 -0
- lib/vendor/servmask/database/class-ai1wm-database-mysql.php +4 -0
- lib/vendor/servmask/database/class-ai1wm-database-mysqli.php +4 -0
- lib/vendor/servmask/database/class-ai1wm-database-utility.php +4 -0
- lib/vendor/servmask/database/class-ai1wm-database.php +21 -2
- lib/vendor/servmask/filesystem/class-ai1wm-directory.php +4 -0
- lib/vendor/servmask/filesystem/class-ai1wm-file-htaccess.php +4 -0
- lib/vendor/servmask/filesystem/class-ai1wm-file-index.php +4 -0
- lib/vendor/servmask/filesystem/class-ai1wm-file-webconfig.php +4 -0
- lib/vendor/servmask/filesystem/class-ai1wm-file.php +4 -0
- lib/vendor/servmask/filter/class-ai1wm-recursive-exclude-filter.php +4 -0
- lib/vendor/servmask/filter/class-ai1wm-recursive-extension-filter.php +4 -0
- lib/vendor/servmask/iterator/class-ai1wm-recursive-directory-iterator.php +4 -0
- lib/vendor/servmask/iterator/class-ai1wm-recursive-iterator-iterator.php +4 -0
- lib/view/backups/index.php +4 -0
- lib/view/common/http-authentication.php +4 -0
- lib/view/common/leave-feedback.php +4 -0
- lib/view/common/maintenance-mode.php +4 -0
- lib/view/common/report-problem.php +4 -0
- lib/view/common/share-buttons.php +4 -0
- lib/view/export/advanced-settings.php +4 -0
- lib/view/export/button-azure-storage.php +4 -0
- lib/view/export/button-b2.php +4 -0
- lib/view/export/button-box.php +4 -0
- lib/view/export/button-digitalocean.php +4 -0
- lib/view/export/button-dropbox.php +4 -0
- lib/view/export/button-file.php +4 -0
- lib/view/export/button-ftp.php +4 -0
- lib/view/export/button-gcloud-storage.php +4 -0
- lib/view/export/button-gdrive.php +4 -0
- lib/view/export/button-glacier.php +4 -0
- lib/view/export/button-mega.php +4 -0
- lib/view/export/button-onedrive.php +4 -0
- lib/view/export/button-pcloud.php +4 -0
- lib/view/export/button-s3-client.php +4 -0
- lib/view/export/button-s3.php +4 -0
- lib/view/export/button-webdav.php +4 -0
- lib/view/export/export-buttons.php +4 -0
- lib/view/export/find-replace.php +4 -0
- lib/view/export/help-section.php +4 -0
- lib/view/export/index.php +4 -0
- lib/view/import/button-azure-storage.php +4 -0
- lib/view/import/button-b2.php +4 -0
- lib/view/import/button-box.php +4 -0
- lib/view/import/button-digitalocean.php +4 -0
- lib/view/import/button-dropbox.php +4 -0
- lib/view/import/button-file.php +4 -0
- lib/view/import/button-ftp.php +4 -0
- lib/view/import/button-gcloud-storage.php +4 -0
- lib/view/import/button-gdrive.php +4 -0
- lib/view/import/button-glacier.php +4 -0
- lib/view/import/button-mega.php +4 -0
- lib/view/import/button-onedrive.php +4 -0
- lib/view/import/button-pcloud.php +4 -0
- lib/view/import/button-s3-client.php +4 -0
- lib/view/import/button-s3.php +4 -0
- lib/view/import/button-url.php +4 -0
- lib/view/import/button-webdav.php +4 -0
- lib/view/import/import-buttons.php +4 -0
- lib/view/import/index.php +4 -0
- lib/view/import/pro.php +4 -0
- lib/view/main/admin-head.php +4 -0
- lib/view/main/backups-htaccess-notice.php +4 -0
- lib/view/main/backups-index-notice.php +4 -0
- lib/view/main/backups-path-notice.php +4 -0
- lib/view/main/backups-webconfig-notice.php +4 -0
- lib/view/main/get-support.php +4 -0
- lib/view/main/multisite-notice.php +4 -0
- lib/view/main/storage-index-notice.php +4 -0
- lib/view/main/storage-path-notice.php +4 -0
- lib/view/main/wordpress-htaccess-notice.php +4 -0
- lib/view/updater/check.php +4 -0
- lib/view/updater/modal.php +4 -0
- loader.php +4 -0
- readme.txt +10 -1
- uninstall.php +4 -0
all-in-one-wp-migration.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Migration tool for all your blog data. Import or Export your blog content with a single click.
|
6 |
* Author: ServMask
|
7 |
* Author URI: https://servmask.com/
|
8 |
-
* Version: 6.
|
9 |
* Text Domain: all-in-one-wp-migration
|
10 |
* Domain Path: /languages
|
11 |
* Network: True
|
@@ -33,6 +33,10 @@
|
|
33 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
34 |
*/
|
35 |
|
|
|
|
|
|
|
|
|
36 |
// Check SSL Mode
|
37 |
if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && ( $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https' ) ) {
|
38 |
$_SERVER['HTTPS'] = 'on';
|
5 |
* Description: Migration tool for all your blog data. Import or Export your blog content with a single click.
|
6 |
* Author: ServMask
|
7 |
* Author URI: https://servmask.com/
|
8 |
+
* Version: 6.86
|
9 |
* Text Domain: all-in-one-wp-migration
|
10 |
* Domain Path: /languages
|
11 |
* Network: True
|
33 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
34 |
*/
|
35 |
|
36 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
37 |
+
die( 'Kangaroos cannot jump here' );
|
38 |
+
}
|
39 |
+
|
40 |
// Check SSL Mode
|
41 |
if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && ( $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https' ) ) {
|
42 |
$_SERVER['HTTPS'] = 'on';
|
constants.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
// ================
|
27 |
// = Plugin Debug =
|
28 |
// ================
|
@@ -31,7 +35,7 @@ define( 'AI1WM_DEBUG', false );
|
|
31 |
// ==================
|
32 |
// = Plugin Version =
|
33 |
// ==================
|
34 |
-
define( 'AI1WM_VERSION', '6.
|
35 |
|
36 |
// ===============
|
37 |
// = Plugin Name =
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
// ================
|
31 |
// = Plugin Debug =
|
32 |
// ================
|
35 |
// ==================
|
36 |
// = Plugin Version =
|
37 |
// ==================
|
38 |
+
define( 'AI1WM_VERSION', '6.86' );
|
39 |
|
40 |
// ===============
|
41 |
// = Plugin Name =
|
deprecated.php
CHANGED
@@ -23,4 +23,8 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
function ai1wm_progress_path( $params ) {}
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
function ai1wm_progress_path( $params ) {}
|
exceptions.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Archive_Exception extends Exception {}
|
27 |
class Ai1wm_Backups_Exception extends Exception {}
|
28 |
class Ai1wm_Export_Exception extends Exception {}
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Archive_Exception extends Exception {}
|
31 |
class Ai1wm_Backups_Exception extends Exception {}
|
32 |
class Ai1wm_Export_Exception extends Exception {}
|
functions.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
/**
|
27 |
* Get storage absolute path
|
28 |
*
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
/**
|
31 |
* Get storage absolute path
|
32 |
*
|
lib/controller/class-ai1wm-backups-controller.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Backups_Controller {
|
27 |
|
28 |
public static function index() {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Backups_Controller {
|
31 |
|
32 |
public static function index() {
|
lib/controller/class-ai1wm-export-controller.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Export_Controller {
|
27 |
|
28 |
public static function index() {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Export_Controller {
|
31 |
|
32 |
public static function index() {
|
lib/controller/class-ai1wm-feedback-controller.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Feedback_Controller {
|
27 |
|
28 |
public static function feedback( $params = array() ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Feedback_Controller {
|
31 |
|
32 |
public static function feedback( $params = array() ) {
|
lib/controller/class-ai1wm-import-controller.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Import_Controller {
|
27 |
|
28 |
public static function index() {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Import_Controller {
|
31 |
|
32 |
public static function index() {
|
lib/controller/class-ai1wm-main-controller.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Main_Controller {
|
27 |
|
28 |
/**
|
@@ -53,6 +57,9 @@ class Ai1wm_Main_Controller {
|
|
53 |
if ( extension_loaded( 'litespeed' ) ) {
|
54 |
$this->create_litespeed_htaccess( AI1WM_WORDPRESS_HTACCESS );
|
55 |
}
|
|
|
|
|
|
|
56 |
}
|
57 |
|
58 |
/**
|
@@ -79,6 +86,9 @@ class Ai1wm_Main_Controller {
|
|
79 |
// Setup folders
|
80 |
add_action( 'admin_init', array( $this, 'setup_folders' ) );
|
81 |
|
|
|
|
|
|
|
82 |
// Schedule crons
|
83 |
add_action( 'admin_init', array( $this, 'schedule_crons' ) );
|
84 |
|
@@ -273,6 +283,18 @@ class Ai1wm_Main_Controller {
|
|
273 |
}
|
274 |
}
|
275 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
276 |
/**
|
277 |
* Schedule cron tasks for plugin operation, if not done yet
|
278 |
*
|
@@ -917,11 +939,6 @@ class Ai1wm_Main_Controller {
|
|
917 |
*/
|
918 |
public function init() {
|
919 |
|
920 |
-
// Set secret key
|
921 |
-
if ( ! get_option( AI1WM_SECRET_KEY ) ) {
|
922 |
-
update_option( AI1WM_SECRET_KEY, wp_generate_password( 12, false ) );
|
923 |
-
}
|
924 |
-
|
925 |
// Set username
|
926 |
if ( isset( $_SERVER['PHP_AUTH_USER'] ) ) {
|
927 |
update_option( AI1WM_AUTH_USER, $_SERVER['PHP_AUTH_USER'] );
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Main_Controller {
|
31 |
|
32 |
/**
|
57 |
if ( extension_loaded( 'litespeed' ) ) {
|
58 |
$this->create_litespeed_htaccess( AI1WM_WORDPRESS_HTACCESS );
|
59 |
}
|
60 |
+
|
61 |
+
$this->setup_folders();
|
62 |
+
$this->create_secret_key();
|
63 |
}
|
64 |
|
65 |
/**
|
86 |
// Setup folders
|
87 |
add_action( 'admin_init', array( $this, 'setup_folders' ) );
|
88 |
|
89 |
+
// Create secret key
|
90 |
+
add_action( 'admin_init', array( $this, 'create_secret_key' ) );
|
91 |
+
|
92 |
// Schedule crons
|
93 |
add_action( 'admin_init', array( $this, 'schedule_crons' ) );
|
94 |
|
283 |
}
|
284 |
}
|
285 |
|
286 |
+
/**
|
287 |
+
* Create secret key if they don't exist yet
|
288 |
+
*
|
289 |
+
* @return void
|
290 |
+
*/
|
291 |
+
public function create_secret_key() {
|
292 |
+
// Set secret key
|
293 |
+
if ( ! get_option( AI1WM_SECRET_KEY ) ) {
|
294 |
+
update_option( AI1WM_SECRET_KEY, wp_generate_password( 12, false ) );
|
295 |
+
}
|
296 |
+
}
|
297 |
+
|
298 |
/**
|
299 |
* Schedule cron tasks for plugin operation, if not done yet
|
300 |
*
|
939 |
*/
|
940 |
public function init() {
|
941 |
|
|
|
|
|
|
|
|
|
|
|
942 |
// Set username
|
943 |
if ( isset( $_SERVER['PHP_AUTH_USER'] ) ) {
|
944 |
update_option( AI1WM_AUTH_USER, $_SERVER['PHP_AUTH_USER'] );
|
lib/controller/class-ai1wm-report-controller.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Report_Controller {
|
27 |
|
28 |
public static function report( $params = array() ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Report_Controller {
|
31 |
|
32 |
public static function report( $params = array() ) {
|
lib/controller/class-ai1wm-status-controller.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Status_Controller {
|
27 |
|
28 |
public static function status( $params = array() ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Status_Controller {
|
31 |
|
32 |
public static function status( $params = array() ) {
|
lib/controller/class-ai1wm-updater-controller.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Updater_Controller {
|
27 |
|
28 |
public static function plugins_api( $result, $action = null, $args = null ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Updater_Controller {
|
31 |
|
32 |
public static function plugins_api( $result, $action = null, $args = null ) {
|
lib/model/class-ai1wm-backups.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Backups {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Backups {
|
31 |
|
32 |
/**
|
lib/model/class-ai1wm-compatibility.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Compatibility {
|
27 |
|
28 |
public static function get( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Compatibility {
|
31 |
|
32 |
public static function get( $params ) {
|
lib/model/class-ai1wm-deprecated.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Export_Abstract {}
|
27 |
class Ai1wm_Import_Abstract {}
|
28 |
class Ai1wm_Config {}
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Export_Abstract {}
|
31 |
class Ai1wm_Import_Abstract {}
|
32 |
class Ai1wm_Config {}
|
lib/model/class-ai1wm-extensions.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Extensions {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Extensions {
|
31 |
|
32 |
/**
|
lib/model/class-ai1wm-feedback.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Feedback {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Feedback {
|
31 |
|
32 |
/**
|
lib/model/class-ai1wm-handler.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Handler {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Handler {
|
31 |
|
32 |
/**
|
lib/model/class-ai1wm-log.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Log {
|
27 |
|
28 |
public static function export( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Log {
|
31 |
|
32 |
public static function export( $params ) {
|
lib/model/class-ai1wm-message.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Message {
|
27 |
|
28 |
public static function flash( $type, $message ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Message {
|
31 |
|
32 |
public static function flash( $type, $message ) {
|
lib/model/class-ai1wm-notification.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Notification {
|
27 |
|
28 |
public static function ok( $subject, $message ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Notification {
|
31 |
|
32 |
public static function ok( $subject, $message ) {
|
lib/model/class-ai1wm-report.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Report {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Report {
|
31 |
|
32 |
/**
|
lib/model/class-ai1wm-status.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Status {
|
27 |
|
28 |
public static function error( $title, $message ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Status {
|
31 |
|
32 |
public static function error( $title, $message ) {
|
lib/model/class-ai1wm-template.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Template extends Bandar {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Template extends Bandar {
|
31 |
|
32 |
/**
|
lib/model/class-ai1wm-updater.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Updater {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Updater {
|
31 |
|
32 |
/**
|
lib/model/export/class-ai1wm-export-archive.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Export_Archive {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Export_Archive {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/export/class-ai1wm-export-clean.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Export_Clean {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Export_Clean {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/export/class-ai1wm-export-compatibility.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Export_Compatibility {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Export_Compatibility {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/export/class-ai1wm-export-config-file.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Export_Config_File {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Export_Config_File {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/export/class-ai1wm-export-config.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Export_Config {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Export_Config {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/export/class-ai1wm-export-content.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Export_Content {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Export_Content {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/export/class-ai1wm-export-database-file.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Export_Database_File {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Export_Database_File {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/export/class-ai1wm-export-database.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Export_Database {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Export_Database {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/export/class-ai1wm-export-download.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Export_Download {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Export_Download {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/export/class-ai1wm-export-enumerate.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Export_Enumerate {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Export_Enumerate {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/export/class-ai1wm-export-init.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Export_Init {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Export_Init {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/import/class-ai1wm-import-blogs.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Import_Blogs {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Import_Blogs {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/import/class-ai1wm-import-clean.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Import_Clean {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Import_Clean {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/import/class-ai1wm-import-compatibility.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Import_Compatibility {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Import_Compatibility {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/import/class-ai1wm-import-confirm.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Import_Confirm {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Import_Confirm {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/import/class-ai1wm-import-content.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Import_Content {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Import_Content {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/import/class-ai1wm-import-database.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Import_Database {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Import_Database {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/import/class-ai1wm-import-done.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Import_Done {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Import_Done {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/import/class-ai1wm-import-enumerate.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Import_Enumerate {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Import_Enumerate {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/import/class-ai1wm-import-mu-plugins.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Import_Mu_Plugins {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Import_Mu_Plugins {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/model/import/class-ai1wm-import-upload.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Import_Upload {
|
27 |
|
28 |
private static function validate() {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Import_Upload {
|
31 |
|
32 |
private static function validate() {
|
lib/model/import/class-ai1wm-import-validate.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Import_Validate {
|
27 |
|
28 |
public static function execute( $params ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Import_Validate {
|
31 |
|
32 |
public static function execute( $params ) {
|
lib/vendor/bandar/bandar/lib/Bandar.php
CHANGED
@@ -33,6 +33,10 @@
|
|
33 |
* @link https://github.com/yani-/bandar/
|
34 |
*/
|
35 |
|
|
|
|
|
|
|
|
|
36 |
/**
|
37 |
* Define EOL for CLI and Web
|
38 |
*/
|
33 |
* @link https://github.com/yani-/bandar/
|
34 |
*/
|
35 |
|
36 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
37 |
+
die( 'Kangaroos cannot jump here' );
|
38 |
+
}
|
39 |
+
|
40 |
/**
|
41 |
* Define EOL for CLI and Web
|
42 |
*/
|
lib/vendor/bandar/bandar/lib/Exceptions/TemplateDoesNotExistException.php
CHANGED
@@ -33,6 +33,10 @@
|
|
33 |
* @link https://github.com/yani-/bandar/
|
34 |
*/
|
35 |
|
|
|
|
|
|
|
|
|
36 |
/**
|
37 |
* TemplateDoesNotExistException
|
38 |
*
|
33 |
* @link https://github.com/yani-/bandar/
|
34 |
*/
|
35 |
|
36 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
37 |
+
die( 'Kangaroos cannot jump here' );
|
38 |
+
}
|
39 |
+
|
40 |
/**
|
41 |
* TemplateDoesNotExistException
|
42 |
*
|
lib/vendor/servmask/archiver/class-ai1wm-archiver.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
abstract class Ai1wm_Archiver {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
abstract class Ai1wm_Archiver {
|
31 |
|
32 |
/**
|
lib/vendor/servmask/archiver/class-ai1wm-compressor.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Compressor extends Ai1wm_Archiver {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Compressor extends Ai1wm_Archiver {
|
31 |
|
32 |
/**
|
lib/vendor/servmask/archiver/class-ai1wm-extractor.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Extractor extends Ai1wm_Archiver {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Extractor extends Ai1wm_Archiver {
|
31 |
|
32 |
/**
|
lib/vendor/servmask/command/class-ai1wm-wp-cli-command.php
CHANGED
@@ -16,6 +16,10 @@
|
|
16 |
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
17 |
*/
|
18 |
|
|
|
|
|
|
|
|
|
19 |
if ( defined( 'WP_CLI' ) ) {
|
20 |
class Ai1wm_WP_CLI_Command extends WP_CLI_Command {
|
21 |
public function __invoke() {
|
16 |
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
17 |
*/
|
18 |
|
19 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
20 |
+
die( 'Kangaroos cannot jump here' );
|
21 |
+
}
|
22 |
+
|
23 |
if ( defined( 'WP_CLI' ) ) {
|
24 |
class Ai1wm_WP_CLI_Command extends WP_CLI_Command {
|
25 |
public function __invoke() {
|
lib/vendor/servmask/cron/class-ai1wm-cron.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Cron {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Cron {
|
31 |
|
32 |
/**
|
lib/vendor/servmask/database/class-ai1wm-database-mysql.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Database_Mysql extends Ai1wm_Database {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Database_Mysql extends Ai1wm_Database {
|
31 |
|
32 |
/**
|
lib/vendor/servmask/database/class-ai1wm-database-mysqli.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Database_Mysqli extends Ai1wm_Database {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Database_Mysqli extends Ai1wm_Database {
|
31 |
|
32 |
/**
|
lib/vendor/servmask/database/class-ai1wm-database-utility.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Database_Utility {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Database_Utility {
|
31 |
|
32 |
/**
|
lib/vendor/servmask/database/class-ai1wm-database.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
abstract class Ai1wm_Database {
|
27 |
|
28 |
/**
|
@@ -690,8 +694,7 @@ abstract class Ai1wm_Database {
|
|
690 |
$value = $this->replace_column_prefixes( $value, 0 );
|
691 |
}
|
692 |
|
693 |
-
|
694 |
-
$items[] = is_null( $value ) ? 'NULL' : "'" . $this->escape( $value ) . "'";
|
695 |
}
|
696 |
|
697 |
// Set table values
|
@@ -1339,6 +1342,22 @@ abstract class Ai1wm_Database {
|
|
1339 |
return $header;
|
1340 |
}
|
1341 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1342 |
/**
|
1343 |
* Run MySQL query
|
1344 |
*
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
abstract class Ai1wm_Database {
|
31 |
|
32 |
/**
|
694 |
$value = $this->replace_column_prefixes( $value, 0 );
|
695 |
}
|
696 |
|
697 |
+
$items[] = $this->prepare_table_values( $value );
|
|
|
698 |
}
|
699 |
|
700 |
// Set table values
|
1342 |
return $header;
|
1343 |
}
|
1344 |
|
1345 |
+
/**
|
1346 |
+
* Prepare table values
|
1347 |
+
*
|
1348 |
+
* @param mixed $input Table value
|
1349 |
+
* @return mixed
|
1350 |
+
*/
|
1351 |
+
protected function prepare_table_values( $input ) {
|
1352 |
+
if ( is_null( $input ) ) {
|
1353 |
+
return 'NULL';
|
1354 |
+
} elseif ( is_numeric( $input ) ) {
|
1355 |
+
return $input;
|
1356 |
+
}
|
1357 |
+
|
1358 |
+
return "'" . $this->escape( $input ) . "'";
|
1359 |
+
}
|
1360 |
+
|
1361 |
/**
|
1362 |
* Run MySQL query
|
1363 |
*
|
lib/vendor/servmask/filesystem/class-ai1wm-directory.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Directory {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Directory {
|
31 |
|
32 |
/**
|
lib/vendor/servmask/filesystem/class-ai1wm-file-htaccess.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_File_Htaccess {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_File_Htaccess {
|
31 |
|
32 |
/**
|
lib/vendor/servmask/filesystem/class-ai1wm-file-index.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_File_Index {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_File_Index {
|
31 |
|
32 |
/**
|
lib/vendor/servmask/filesystem/class-ai1wm-file-webconfig.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_File_Webconfig {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_File_Webconfig {
|
31 |
|
32 |
/**
|
lib/vendor/servmask/filesystem/class-ai1wm-file.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_File {
|
27 |
|
28 |
/**
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_File {
|
31 |
|
32 |
/**
|
lib/vendor/servmask/filter/class-ai1wm-recursive-exclude-filter.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Recursive_Exclude_Filter extends RecursiveFilterIterator {
|
27 |
|
28 |
protected $exclude = array();
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Recursive_Exclude_Filter extends RecursiveFilterIterator {
|
31 |
|
32 |
protected $exclude = array();
|
lib/vendor/servmask/filter/class-ai1wm-recursive-extension-filter.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Recursive_Extension_Filter extends RecursiveFilterIterator {
|
27 |
|
28 |
protected $include = array();
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Recursive_Extension_Filter extends RecursiveFilterIterator {
|
31 |
|
32 |
protected $include = array();
|
lib/vendor/servmask/iterator/class-ai1wm-recursive-directory-iterator.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Recursive_Directory_Iterator extends RecursiveDirectoryIterator {
|
27 |
|
28 |
public function __construct( $path ) {
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Recursive_Directory_Iterator extends RecursiveDirectoryIterator {
|
31 |
|
32 |
public function __construct( $path ) {
|
lib/vendor/servmask/iterator/class-ai1wm-recursive-iterator-iterator.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
class Ai1wm_Recursive_Iterator_Iterator extends RecursiveIteratorIterator {
|
27 |
|
28 |
}
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
class Ai1wm_Recursive_Iterator_Iterator extends RecursiveIteratorIterator {
|
31 |
|
32 |
}
|
lib/view/backups/index.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<div class="ai1wm-container">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<div class="ai1wm-container">
|
lib/view/common/http-authentication.php
CHANGED
@@ -22,3 +22,7 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
lib/view/common/leave-feedback.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<div class="ai1wm-feedback">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<div class="ai1wm-feedback">
|
lib/view/common/maintenance-mode.php
CHANGED
@@ -22,3 +22,7 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
lib/view/common/report-problem.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<div class="ai1wm-report-problem">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<div class="ai1wm-report-problem">
|
lib/view/common/share-buttons.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<div id="fb-root"></div>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<div id="fb-root"></div>
|
lib/view/export/advanced-settings.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<div class="ai1wm-field-set">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<div class="ai1wm-field-set">
|
lib/view/export/button-azure-storage.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/microsoft-azure-storage-extension" target="_blank">Azure Storage</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/microsoft-azure-storage-extension" target="_blank">Azure Storage</a>
|
lib/view/export/button-b2.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/backblaze-b2-extension" target="_blank">Backblaze B2</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/backblaze-b2-extension" target="_blank">Backblaze B2</a>
|
lib/view/export/button-box.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/box-extension" target="_blank">Box</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/box-extension" target="_blank">Box</a>
|
lib/view/export/button-digitalocean.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/digitalocean-spaces-extension" target="_blank">DigitalOcean</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/digitalocean-spaces-extension" target="_blank">DigitalOcean</a>
|
lib/view/export/button-dropbox.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/dropbox-extension" target="_blank">Dropbox</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/dropbox-extension" target="_blank">Dropbox</a>
|
lib/view/export/button-file.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="#" id="ai1wm-export-file"><?php _e( 'File', AI1WM_PLUGIN_NAME ); ?></a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="#" id="ai1wm-export-file"><?php _e( 'File', AI1WM_PLUGIN_NAME ); ?></a>
|
lib/view/export/button-ftp.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/ftp-extension" target="_blank">FTP</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/ftp-extension" target="_blank">FTP</a>
|
lib/view/export/button-gcloud-storage.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/google-cloud-storage-extension" target="_blank">Google Cloud</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/google-cloud-storage-extension" target="_blank">Google Cloud</a>
|
lib/view/export/button-gdrive.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/google-drive-extension" target="_blank">Google Drive</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/google-drive-extension" target="_blank">Google Drive</a>
|
lib/view/export/button-glacier.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/amazon-glacier-extension" target="_blank">Amazon Glacier</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/amazon-glacier-extension" target="_blank">Amazon Glacier</a>
|
lib/view/export/button-mega.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/mega-extension" target="_blank">Mega</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/mega-extension" target="_blank">Mega</a>
|
lib/view/export/button-onedrive.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/onedrive-extension" target="_blank">OneDrive</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/onedrive-extension" target="_blank">OneDrive</a>
|
lib/view/export/button-pcloud.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/pcloud-extension" target="_blank">pCloud</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/pcloud-extension" target="_blank">pCloud</a>
|
lib/view/export/button-s3-client.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/s3-client-extension" target="_blank">S3 Client</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/s3-client-extension" target="_blank">S3 Client</a>
|
lib/view/export/button-s3.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/amazon-s3-extension" target="_blank">Amazon S3</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/amazon-s3-extension" target="_blank">Amazon S3</a>
|
lib/view/export/button-webdav.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/webdav-extension" target="_blank">WebDAV</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/webdav-extension" target="_blank">WebDAV</a>
|
lib/view/export/export-buttons.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<div class="ai1wm-field-set">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<div class="ai1wm-field-set">
|
lib/view/export/find-replace.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<ul id="ai1wm-queries">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<ul id="ai1wm-queries">
|
lib/view/export/help-section.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<p>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<p>
|
lib/view/export/index.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<div class="ai1wm-container">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<div class="ai1wm-container">
|
lib/view/import/button-azure-storage.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/microsoft-azure-storage-extension" target="_blank">Azure Storage</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/microsoft-azure-storage-extension" target="_blank">Azure Storage</a>
|
lib/view/import/button-b2.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/backblaze-b2-extension" target="_blank">Backblaze B2</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/backblaze-b2-extension" target="_blank">Backblaze B2</a>
|
lib/view/import/button-box.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/box-extension" target="_blank">Box</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/box-extension" target="_blank">Box</a>
|
lib/view/import/button-digitalocean.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/digitalocean-spaces-extension" target="_blank">DigitalOcean</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/digitalocean-spaces-extension" target="_blank">DigitalOcean</a>
|
lib/view/import/button-dropbox.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/dropbox-extension" target="_blank">Dropbox</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/dropbox-extension" target="_blank">Dropbox</a>
|
lib/view/import/button-file.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="#" id="ai1wm-import-file">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="#" id="ai1wm-import-file">
|
lib/view/import/button-ftp.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/ftp-extension" target="_blank">FTP</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/ftp-extension" target="_blank">FTP</a>
|
lib/view/import/button-gcloud-storage.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/google-cloud-storage-extension" target="_blank">Google Cloud</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/google-cloud-storage-extension" target="_blank">Google Cloud</a>
|
lib/view/import/button-gdrive.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/google-drive-extension" target="_blank">Google Drive</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/google-drive-extension" target="_blank">Google Drive</a>
|
lib/view/import/button-glacier.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/amazon-glacier-extension" target="_blank">Amazon Glacier</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/amazon-glacier-extension" target="_blank">Amazon Glacier</a>
|
lib/view/import/button-mega.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/mega-extension" target="_blank">Mega</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/mega-extension" target="_blank">Mega</a>
|
lib/view/import/button-onedrive.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/onedrive-extension" target="_blank">OneDrive</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/onedrive-extension" target="_blank">OneDrive</a>
|
lib/view/import/button-pcloud.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/pcloud-extension" target="_blank">pCloud</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/pcloud-extension" target="_blank">pCloud</a>
|
lib/view/import/button-s3-client.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/s3-client-extension" target="_blank">S3 Client</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/s3-client-extension" target="_blank">S3 Client</a>
|
lib/view/import/button-s3.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/amazon-s3-extension" target="_blank">Amazon S3</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/amazon-s3-extension" target="_blank">Amazon S3</a>
|
lib/view/import/button-url.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/url-extension" target="_blank">URL</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/url-extension" target="_blank">URL</a>
|
lib/view/import/button-webdav.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/products/webdav-extension" target="_blank">WebDAV</a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/products/webdav-extension" target="_blank">WebDAV</a>
|
lib/view/import/import-buttons.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<?php if ( is_readable( AI1WM_STORAGE_PATH ) && is_writable( AI1WM_STORAGE_PATH ) ) : ?>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<?php if ( is_readable( AI1WM_STORAGE_PATH ) && is_writable( AI1WM_STORAGE_PATH ) ) : ?>
|
lib/view/import/index.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<div class="ai1wm-container">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<div class="ai1wm-container">
|
lib/view/import/pro.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<p class="max-upload-size">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<p class="max-upload-size">
|
lib/view/main/admin-head.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<style type="text/css" media="all">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<style type="text/css" media="all">
|
lib/view/main/backups-htaccess-notice.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<div class="error">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<div class="error">
|
lib/view/main/backups-index-notice.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<div class="error">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<div class="error">
|
lib/view/main/backups-path-notice.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<div class="error">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<div class="error">
|
lib/view/main/backups-webconfig-notice.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<div class="error">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<div class="error">
|
lib/view/main/get-support.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="https://servmask.com/help" target="_blank"><?php _e( 'Get Support', AI1WM_PLUGIN_NAME ); ?></a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="https://servmask.com/help" target="_blank"><?php _e( 'Get Support', AI1WM_PLUGIN_NAME ); ?></a>
|
lib/view/main/multisite-notice.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<div class="error">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<div class="error">
|
lib/view/main/storage-index-notice.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<div class="error">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<div class="error">
|
lib/view/main/storage-path-notice.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<div class="error">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<div class="error">
|
lib/view/main/wordpress-htaccess-notice.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<div class="error">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<div class="error">
|
lib/view/updater/check.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<a href="<?php echo esc_url( $url ); ?>"><?php _e( 'Check for updates', AI1WM_PLUGIN_NAME ); ?></a>
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<a href="<?php echo esc_url( $url ); ?>"><?php _e( 'Check for updates', AI1WM_PLUGIN_NAME ); ?></a>
|
lib/view/updater/modal.php
CHANGED
@@ -22,6 +22,10 @@
|
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
|
27 |
<div id="ai1wm-modal-dialog-<?php echo esc_attr( $modal ); ?>" class="ai1wm-modal-dialog">
|
22 |
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
+
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<div id="ai1wm-modal-dialog-<?php echo esc_attr( $modal ); ?>" class="ai1wm-modal-dialog">
|
loader.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
// Include all the files that you want to load in here
|
27 |
require_once AI1WM_VENDOR_PATH .
|
28 |
DIRECTORY_SEPARATOR .
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
// Include all the files that you want to load in here
|
31 |
require_once AI1WM_VENDOR_PATH .
|
32 |
DIRECTORY_SEPARATOR .
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: move, transfer, copy, migrate, backup, clone, restore, db migration, wordp
|
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 5.1
|
6 |
Requires PHP: 5.2.17
|
7 |
-
Stable tag: 6.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Move, transfer, copy, migrate, and backup a site with 1-click. Quick, easy, and reliable.
|
@@ -108,6 +108,15 @@ Alternatively you can download the plugin using the download button on this page
|
|
108 |
All-in-One WP Migration **asks for your consent** to collect **requester's email address** when filling plugin's contact form. [GDPR Compliant Privacy Policy](https://www.iubenda.com/privacy-policy/946881)
|
109 |
|
110 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
= 6.85 =
|
112 |
**Changed**
|
113 |
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 5.1
|
6 |
Requires PHP: 5.2.17
|
7 |
+
Stable tag: 6.86
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Move, transfer, copy, migrate, and backup a site with 1-click. Quick, easy, and reliable.
|
108 |
All-in-One WP Migration **asks for your consent** to collect **requester's email address** when filling plugin's contact form. [GDPR Compliant Privacy Policy](https://www.iubenda.com/privacy-policy/946881)
|
109 |
|
110 |
== Changelog ==
|
111 |
+
= 6.86 =
|
112 |
+
**Added**
|
113 |
+
|
114 |
+
* Support for MySQL BIT field type
|
115 |
+
|
116 |
+
**Fixed**
|
117 |
+
|
118 |
+
* WP CLI issue on export/import
|
119 |
+
|
120 |
= 6.85 =
|
121 |
**Changed**
|
122 |
|
uninstall.php
CHANGED
@@ -23,6 +23,10 @@
|
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
|
|
|
|
|
|
|
|
26 |
// Include plugin bootstrap file
|
27 |
require_once dirname( __FILE__ ) .
|
28 |
DIRECTORY_SEPARATOR .
|
23 |
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
24 |
*/
|
25 |
|
26 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
27 |
+
die( 'Kangaroos cannot jump here' );
|
28 |
+
}
|
29 |
+
|
30 |
// Include plugin bootstrap file
|
31 |
require_once dirname( __FILE__ ) .
|
32 |
DIRECTORY_SEPARATOR .
|