Version Description
Added
- Notification class for sending emails on error (export/import)
- Support for DigitalOcean Extension
Fixed
- Database regex pattern for parsing SQL queries
Download this release
Release Info
| Developer | bangelov |
| Plugin | |
| Version | 6.66 |
| Comparing to | |
| See all releases | |
Code changes from version 6.65 to 6.66
- all-in-one-wp-migration.php +2 -1
- constants.php +177 -142
- exceptions.php +1 -0
- functions.php +107 -55
- lib/controller/class-ai1wm-export-controller.php +3 -1
- lib/controller/class-ai1wm-import-controller.php +3 -1
- lib/controller/class-ai1wm-main-controller.php +4 -4
- lib/model/class-ai1wm-compatibility.php +11 -6
- lib/model/class-ai1wm-extensions.php +74 -62
- lib/model/class-ai1wm-message.php +59 -0
- lib/model/class-ai1wm-notification.php +81 -0
- lib/model/class-ai1wm-status.php +16 -16
- lib/model/export/class-ai1wm-export-compatibility.php +4 -21
- lib/model/import/class-ai1wm-import-compatibility.php +4 -3
- lib/model/import/class-ai1wm-import-confirm.php +1 -1
- lib/model/import/class-ai1wm-import-done.php +4 -4
- lib/vendor/servmask/database/class-ai1wm-database.php +2 -2
- lib/view/assets/css/backups.min.css +1 -1
- lib/view/assets/css/export.min.css +1 -1
- lib/view/assets/css/import.min.css +1 -1
- lib/view/assets/css/updater.min.css +1 -1
- lib/view/assets/javascript/backups.min.js +5 -1
- lib/view/assets/javascript/export.min.js +4 -1
- lib/view/assets/javascript/import.min.js +6 -2
- lib/view/export/button-digitalocean.php +1 -0
- lib/view/import/button-digitalocean.php +1 -0
- loader.php +8 -0
- readme.txt +12 -1
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
|
|
@@ -36,6 +36,7 @@
|
|
| 36 |
@ignore_user_abort( true );
|
| 37 |
@set_time_limit( 0 );
|
| 38 |
@ini_set( 'max_input_time', '-1' );
|
|
|
|
| 39 |
|
| 40 |
// Check SSL Mode
|
| 41 |
if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && ( $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https' ) ) {
|
| 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.66
|
| 9 |
* Text Domain: all-in-one-wp-migration
|
| 10 |
* Domain Path: /languages
|
| 11 |
* Network: True
|
| 36 |
@ignore_user_abort( true );
|
| 37 |
@set_time_limit( 0 );
|
| 38 |
@ini_set( 'max_input_time', '-1' );
|
| 39 |
+
@ini_set( 'pcre.backtrack_limit', PHP_INT_MAX );
|
| 40 |
|
| 41 |
// Check SSL Mode
|
| 42 |
if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && ( $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https' ) ) {
|
constants.php
CHANGED
|
@@ -31,7 +31,7 @@ define( 'AI1WM_DEBUG', false );
|
|
| 31 |
// ==================
|
| 32 |
// = Plugin Version =
|
| 33 |
// ==================
|
| 34 |
-
define( 'AI1WM_VERSION', '6.
|
| 35 |
|
| 36 |
// ===============
|
| 37 |
// = Plugin Name =
|
|
@@ -238,6 +238,11 @@ define( 'AI1WM_UPDATER', 'ai1wm_updater' );
|
|
| 238 |
// ==============
|
| 239 |
define( 'AI1WM_STATUS', 'ai1wm_status' );
|
| 240 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 241 |
// =================
|
| 242 |
// = Support Email =
|
| 243 |
// =================
|
|
@@ -314,6 +319,66 @@ if ( defined( 'AI1WM_PLUGIN_BASENAME' ) ) {
|
|
| 314 |
define( 'AI1WM_PLUGIN_BASEDIR', 'all-in-one-wp-migration' );
|
| 315 |
}
|
| 316 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 317 |
// ==============================
|
| 318 |
// = Dropbox Extension Base Dir =
|
| 319 |
// ==============================
|
|
@@ -344,6 +409,36 @@ if ( ! defined( 'AI1WMDE_PLUGIN_SHORT' ) ) {
|
|
| 344 |
define( 'AI1WMDE_PLUGIN_SHORT', 'dropbox' );
|
| 345 |
}
|
| 346 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 347 |
// ===================================
|
| 348 |
// = Google Drive Extension Base Dir =
|
| 349 |
// ===================================
|
|
@@ -374,34 +469,34 @@ if ( ! defined( 'AI1WMGE_PLUGIN_SHORT' ) ) {
|
|
| 374 |
define( 'AI1WMGE_PLUGIN_SHORT', 'gdrive' );
|
| 375 |
}
|
| 376 |
|
| 377 |
-
//
|
| 378 |
-
// =
|
| 379 |
-
//
|
| 380 |
-
if ( defined( '
|
| 381 |
-
define( '
|
| 382 |
} else {
|
| 383 |
-
define( '
|
| 384 |
}
|
| 385 |
|
| 386 |
-
//
|
| 387 |
-
// =
|
| 388 |
-
//
|
| 389 |
-
if ( ! defined( '
|
| 390 |
-
define( '
|
| 391 |
}
|
| 392 |
|
| 393 |
-
//
|
| 394 |
-
// =
|
| 395 |
-
//
|
| 396 |
-
if ( ! defined( '
|
| 397 |
-
define( '
|
| 398 |
}
|
| 399 |
|
| 400 |
-
//
|
| 401 |
-
// =
|
| 402 |
-
//
|
| 403 |
-
if ( ! defined( '
|
| 404 |
-
define( '
|
| 405 |
}
|
| 406 |
|
| 407 |
// ================================
|
|
@@ -434,6 +529,66 @@ if ( ! defined( 'AI1WMME_PLUGIN_SHORT' ) ) {
|
|
| 434 |
define( 'AI1WMME_PLUGIN_SHORT', 'multisite' );
|
| 435 |
}
|
| 436 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 437 |
// ================================
|
| 438 |
// = Unlimited Extension Base Dir =
|
| 439 |
// ================================
|
|
@@ -464,36 +619,6 @@ if ( ! defined( 'AI1WMUE_PLUGIN_SHORT' ) ) {
|
|
| 464 |
define( 'AI1WMUE_PLUGIN_SHORT', 'unlimited' );
|
| 465 |
}
|
| 466 |
|
| 467 |
-
// ==========================
|
| 468 |
-
// = FTP Extension Base Dir =
|
| 469 |
-
// ==========================
|
| 470 |
-
if ( defined( 'AI1WMFE_PLUGIN_BASENAME' ) ) {
|
| 471 |
-
define( 'AI1WMFE_PLUGIN_BASEDIR', dirname( AI1WMFE_PLUGIN_BASENAME ) );
|
| 472 |
-
} else {
|
| 473 |
-
define( 'AI1WMFE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-ftp-extension' );
|
| 474 |
-
}
|
| 475 |
-
|
| 476 |
-
// =======================
|
| 477 |
-
// = FTP Extension About =
|
| 478 |
-
// =======================
|
| 479 |
-
if ( ! defined( 'AI1WMFE_PLUGIN_ABOUT' ) ) {
|
| 480 |
-
define( 'AI1WMFE_PLUGIN_ABOUT', 'https://servmask.com/products/ftp-extension/about' );
|
| 481 |
-
}
|
| 482 |
-
|
| 483 |
-
// =====================
|
| 484 |
-
// = FTP Extension Key =
|
| 485 |
-
// =====================
|
| 486 |
-
if ( ! defined( 'AI1WMFE_PLUGIN_KEY' ) ) {
|
| 487 |
-
define( 'AI1WMFE_PLUGIN_KEY', 'ai1wmfe_plugin_key' );
|
| 488 |
-
}
|
| 489 |
-
|
| 490 |
-
// =======================
|
| 491 |
-
// = FTP Extension Short =
|
| 492 |
-
// =======================
|
| 493 |
-
if ( ! defined( 'AI1WMFE_PLUGIN_SHORT' ) ) {
|
| 494 |
-
define( 'AI1WMFE_PLUGIN_SHORT', 'ftp' );
|
| 495 |
-
}
|
| 496 |
-
|
| 497 |
// ==========================
|
| 498 |
// = URL Extension Base Dir =
|
| 499 |
// ==========================
|
|
@@ -523,93 +648,3 @@ if ( ! defined( 'AI1WMLE_PLUGIN_KEY' ) ) {
|
|
| 523 |
if ( ! defined( 'AI1WMLE_PLUGIN_SHORT' ) ) {
|
| 524 |
define( 'AI1WMLE_PLUGIN_SHORT', 'url' );
|
| 525 |
}
|
| 526 |
-
|
| 527 |
-
// ===============================
|
| 528 |
-
// = OneDrive Extension Base Dir =
|
| 529 |
-
// ===============================
|
| 530 |
-
if ( defined( 'AI1WMOE_PLUGIN_BASENAME' ) ) {
|
| 531 |
-
define( 'AI1WMOE_PLUGIN_BASEDIR', dirname( AI1WMOE_PLUGIN_BASENAME ) );
|
| 532 |
-
} else {
|
| 533 |
-
define( 'AI1WMOE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-onedrive-extension' );
|
| 534 |
-
}
|
| 535 |
-
|
| 536 |
-
// ============================
|
| 537 |
-
// = OneDrive Extension About =
|
| 538 |
-
// ============================
|
| 539 |
-
if ( ! defined( 'AI1WMOE_PLUGIN_ABOUT' ) ) {
|
| 540 |
-
define( 'AI1WMOE_PLUGIN_ABOUT', 'https://servmask.com/products/onedrive-extension/about' );
|
| 541 |
-
}
|
| 542 |
-
|
| 543 |
-
// ==========================
|
| 544 |
-
// = OneDrive Extension Key =
|
| 545 |
-
// ==========================
|
| 546 |
-
if ( ! defined( 'AI1WMOE_PLUGIN_KEY' ) ) {
|
| 547 |
-
define( 'AI1WMOE_PLUGIN_KEY', 'ai1wmoe_plugin_key' );
|
| 548 |
-
}
|
| 549 |
-
|
| 550 |
-
// ============================
|
| 551 |
-
// = OneDrive Extension Short =
|
| 552 |
-
// ============================
|
| 553 |
-
if ( ! defined( 'AI1WMOE_PLUGIN_SHORT' ) ) {
|
| 554 |
-
define( 'AI1WMOE_PLUGIN_SHORT', 'onedrive' );
|
| 555 |
-
}
|
| 556 |
-
|
| 557 |
-
// ==========================
|
| 558 |
-
// = Box Extension Base Dir =
|
| 559 |
-
// ==========================
|
| 560 |
-
if ( defined( 'AI1WMBE_PLUGIN_BASENAME' ) ) {
|
| 561 |
-
define( 'AI1WMBE_PLUGIN_BASEDIR', dirname( AI1WMBE_PLUGIN_BASENAME ) );
|
| 562 |
-
} else {
|
| 563 |
-
define( 'AI1WMBE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-box-extension' );
|
| 564 |
-
}
|
| 565 |
-
|
| 566 |
-
// =======================
|
| 567 |
-
// = Box Extension About =
|
| 568 |
-
// =======================
|
| 569 |
-
if ( ! defined( 'AI1WMBE_PLUGIN_ABOUT' ) ) {
|
| 570 |
-
define( 'AI1WMBE_PLUGIN_ABOUT', 'https://servmask.com/products/box-extension/about' );
|
| 571 |
-
}
|
| 572 |
-
|
| 573 |
-
// =====================
|
| 574 |
-
// = Box Extension Key =
|
| 575 |
-
// =====================
|
| 576 |
-
if ( ! defined( 'AI1WMBE_PLUGIN_KEY' ) ) {
|
| 577 |
-
define( 'AI1WMBE_PLUGIN_KEY', 'ai1wmbe_plugin_key' );
|
| 578 |
-
}
|
| 579 |
-
|
| 580 |
-
// =======================
|
| 581 |
-
// = Box Extension Short =
|
| 582 |
-
// =======================
|
| 583 |
-
if ( ! defined( 'AI1WMBE_PLUGIN_SHORT' ) ) {
|
| 584 |
-
define( 'AI1WMBE_PLUGIN_SHORT', 'box' );
|
| 585 |
-
}
|
| 586 |
-
|
| 587 |
-
// ===========================
|
| 588 |
-
// = Mega Extension Base Dir =
|
| 589 |
-
// ===========================
|
| 590 |
-
if ( defined( 'AI1WMEE_PLUGIN_BASENAME' ) ) {
|
| 591 |
-
define( 'AI1WMEE_PLUGIN_BASEDIR', dirname( AI1WMEE_PLUGIN_BASENAME ) );
|
| 592 |
-
} else {
|
| 593 |
-
define( 'AI1WMEE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-mega-extension' );
|
| 594 |
-
}
|
| 595 |
-
|
| 596 |
-
// ========================
|
| 597 |
-
// = Mega Extension About =
|
| 598 |
-
// ========================
|
| 599 |
-
if ( ! defined( 'AI1WMEE_PLUGIN_ABOUT' ) ) {
|
| 600 |
-
define( 'AI1WMEE_PLUGIN_ABOUT', 'https://servmask.com/products/mega-extension/about' );
|
| 601 |
-
}
|
| 602 |
-
|
| 603 |
-
// ======================
|
| 604 |
-
// = Mega Extension Key =
|
| 605 |
-
// ======================
|
| 606 |
-
if ( ! defined( 'AI1WMEE_PLUGIN_KEY' ) ) {
|
| 607 |
-
define( 'AI1WMEE_PLUGIN_KEY', 'ai1wmee_plugin_key' );
|
| 608 |
-
}
|
| 609 |
-
|
| 610 |
-
// ========================
|
| 611 |
-
// = Mega Extension Short =
|
| 612 |
-
// ========================
|
| 613 |
-
if ( ! defined( 'AI1WMEE_PLUGIN_SHORT' ) ) {
|
| 614 |
-
define( 'AI1WMEE_PLUGIN_SHORT', 'mega' );
|
| 615 |
-
}
|
| 31 |
// ==================
|
| 32 |
// = Plugin Version =
|
| 33 |
// ==================
|
| 34 |
+
define( 'AI1WM_VERSION', '6.66' );
|
| 35 |
|
| 36 |
// ===============
|
| 37 |
// = Plugin Name =
|
| 238 |
// ==============
|
| 239 |
define( 'AI1WM_STATUS', 'ai1wm_status' );
|
| 240 |
|
| 241 |
+
// ================
|
| 242 |
+
// = Messages Key =
|
| 243 |
+
// ================
|
| 244 |
+
define( 'AI1WM_MESSAGES', 'ai1wm_messages' );
|
| 245 |
+
|
| 246 |
// =================
|
| 247 |
// = Support Email =
|
| 248 |
// =================
|
| 319 |
define( 'AI1WM_PLUGIN_BASEDIR', 'all-in-one-wp-migration' );
|
| 320 |
}
|
| 321 |
|
| 322 |
+
// ==========================
|
| 323 |
+
// = Box Extension Base Dir =
|
| 324 |
+
// ==========================
|
| 325 |
+
if ( defined( 'AI1WMBE_PLUGIN_BASENAME' ) ) {
|
| 326 |
+
define( 'AI1WMBE_PLUGIN_BASEDIR', dirname( AI1WMBE_PLUGIN_BASENAME ) );
|
| 327 |
+
} else {
|
| 328 |
+
define( 'AI1WMBE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-box-extension' );
|
| 329 |
+
}
|
| 330 |
+
|
| 331 |
+
// =======================
|
| 332 |
+
// = Box Extension About =
|
| 333 |
+
// =======================
|
| 334 |
+
if ( ! defined( 'AI1WMBE_PLUGIN_ABOUT' ) ) {
|
| 335 |
+
define( 'AI1WMBE_PLUGIN_ABOUT', 'https://servmask.com/products/box-extension/about' );
|
| 336 |
+
}
|
| 337 |
+
|
| 338 |
+
// =====================
|
| 339 |
+
// = Box Extension Key =
|
| 340 |
+
// =====================
|
| 341 |
+
if ( ! defined( 'AI1WMBE_PLUGIN_KEY' ) ) {
|
| 342 |
+
define( 'AI1WMBE_PLUGIN_KEY', 'ai1wmbe_plugin_key' );
|
| 343 |
+
}
|
| 344 |
+
|
| 345 |
+
// =======================
|
| 346 |
+
// = Box Extension Short =
|
| 347 |
+
// =======================
|
| 348 |
+
if ( ! defined( 'AI1WMBE_PLUGIN_SHORT' ) ) {
|
| 349 |
+
define( 'AI1WMBE_PLUGIN_SHORT', 'box' );
|
| 350 |
+
}
|
| 351 |
+
|
| 352 |
+
// ===================================
|
| 353 |
+
// = DigitalOcean Extension Base Dir =
|
| 354 |
+
// ===================================
|
| 355 |
+
if ( defined( 'AI1WMIE_PLUGIN_BASENAME' ) ) {
|
| 356 |
+
define( 'AI1WMIE_PLUGIN_BASEDIR', dirname( AI1WMIE_PLUGIN_BASENAME ) );
|
| 357 |
+
} else {
|
| 358 |
+
define( 'AI1WMIE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-digitalocean-extension' );
|
| 359 |
+
}
|
| 360 |
+
|
| 361 |
+
// ================================
|
| 362 |
+
// = DigitalOcean Extension About =
|
| 363 |
+
// ================================
|
| 364 |
+
if ( ! defined( 'AI1WMIE_PLUGIN_ABOUT' ) ) {
|
| 365 |
+
define( 'AI1WMIE_PLUGIN_ABOUT', 'https://servmask.com/products/digitalocean-extension/about' );
|
| 366 |
+
}
|
| 367 |
+
|
| 368 |
+
// ==============================
|
| 369 |
+
// = DigitalOcean Extension Key =
|
| 370 |
+
// ==============================
|
| 371 |
+
if ( ! defined( 'AI1WMIE_PLUGIN_KEY' ) ) {
|
| 372 |
+
define( 'AI1WMIE_PLUGIN_KEY', 'ai1wmie_plugin_key' );
|
| 373 |
+
}
|
| 374 |
+
|
| 375 |
+
// ================================
|
| 376 |
+
// = DigitalOcean Extension Short =
|
| 377 |
+
// ================================
|
| 378 |
+
if ( ! defined( 'AI1WMIE_PLUGIN_SHORT' ) ) {
|
| 379 |
+
define( 'AI1WMIE_PLUGIN_SHORT', 'digitalocean' );
|
| 380 |
+
}
|
| 381 |
+
|
| 382 |
// ==============================
|
| 383 |
// = Dropbox Extension Base Dir =
|
| 384 |
// ==============================
|
| 409 |
define( 'AI1WMDE_PLUGIN_SHORT', 'dropbox' );
|
| 410 |
}
|
| 411 |
|
| 412 |
+
// ==========================
|
| 413 |
+
// = FTP Extension Base Dir =
|
| 414 |
+
// ==========================
|
| 415 |
+
if ( defined( 'AI1WMFE_PLUGIN_BASENAME' ) ) {
|
| 416 |
+
define( 'AI1WMFE_PLUGIN_BASEDIR', dirname( AI1WMFE_PLUGIN_BASENAME ) );
|
| 417 |
+
} else {
|
| 418 |
+
define( 'AI1WMFE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-ftp-extension' );
|
| 419 |
+
}
|
| 420 |
+
|
| 421 |
+
// =======================
|
| 422 |
+
// = FTP Extension About =
|
| 423 |
+
// =======================
|
| 424 |
+
if ( ! defined( 'AI1WMFE_PLUGIN_ABOUT' ) ) {
|
| 425 |
+
define( 'AI1WMFE_PLUGIN_ABOUT', 'https://servmask.com/products/ftp-extension/about' );
|
| 426 |
+
}
|
| 427 |
+
|
| 428 |
+
// =====================
|
| 429 |
+
// = FTP Extension Key =
|
| 430 |
+
// =====================
|
| 431 |
+
if ( ! defined( 'AI1WMFE_PLUGIN_KEY' ) ) {
|
| 432 |
+
define( 'AI1WMFE_PLUGIN_KEY', 'ai1wmfe_plugin_key' );
|
| 433 |
+
}
|
| 434 |
+
|
| 435 |
+
// =======================
|
| 436 |
+
// = FTP Extension Short =
|
| 437 |
+
// =======================
|
| 438 |
+
if ( ! defined( 'AI1WMFE_PLUGIN_SHORT' ) ) {
|
| 439 |
+
define( 'AI1WMFE_PLUGIN_SHORT', 'ftp' );
|
| 440 |
+
}
|
| 441 |
+
|
| 442 |
// ===================================
|
| 443 |
// = Google Drive Extension Base Dir =
|
| 444 |
// ===================================
|
| 469 |
define( 'AI1WMGE_PLUGIN_SHORT', 'gdrive' );
|
| 470 |
}
|
| 471 |
|
| 472 |
+
// ===========================
|
| 473 |
+
// = Mega Extension Base Dir =
|
| 474 |
+
// ===========================
|
| 475 |
+
if ( defined( 'AI1WMEE_PLUGIN_BASENAME' ) ) {
|
| 476 |
+
define( 'AI1WMEE_PLUGIN_BASEDIR', dirname( AI1WMEE_PLUGIN_BASENAME ) );
|
| 477 |
} else {
|
| 478 |
+
define( 'AI1WMEE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-mega-extension' );
|
| 479 |
}
|
| 480 |
|
| 481 |
+
// ========================
|
| 482 |
+
// = Mega Extension About =
|
| 483 |
+
// ========================
|
| 484 |
+
if ( ! defined( 'AI1WMEE_PLUGIN_ABOUT' ) ) {
|
| 485 |
+
define( 'AI1WMEE_PLUGIN_ABOUT', 'https://servmask.com/products/mega-extension/about' );
|
| 486 |
}
|
| 487 |
|
| 488 |
+
// ======================
|
| 489 |
+
// = Mega Extension Key =
|
| 490 |
+
// ======================
|
| 491 |
+
if ( ! defined( 'AI1WMEE_PLUGIN_KEY' ) ) {
|
| 492 |
+
define( 'AI1WMEE_PLUGIN_KEY', 'ai1wmee_plugin_key' );
|
| 493 |
}
|
| 494 |
|
| 495 |
+
// ========================
|
| 496 |
+
// = Mega Extension Short =
|
| 497 |
+
// ========================
|
| 498 |
+
if ( ! defined( 'AI1WMEE_PLUGIN_SHORT' ) ) {
|
| 499 |
+
define( 'AI1WMEE_PLUGIN_SHORT', 'mega' );
|
| 500 |
}
|
| 501 |
|
| 502 |
// ================================
|
| 529 |
define( 'AI1WMME_PLUGIN_SHORT', 'multisite' );
|
| 530 |
}
|
| 531 |
|
| 532 |
+
// ===============================
|
| 533 |
+
// = OneDrive Extension Base Dir =
|
| 534 |
+
// ===============================
|
| 535 |
+
if ( defined( 'AI1WMOE_PLUGIN_BASENAME' ) ) {
|
| 536 |
+
define( 'AI1WMOE_PLUGIN_BASEDIR', dirname( AI1WMOE_PLUGIN_BASENAME ) );
|
| 537 |
+
} else {
|
| 538 |
+
define( 'AI1WMOE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-onedrive-extension' );
|
| 539 |
+
}
|
| 540 |
+
|
| 541 |
+
// ============================
|
| 542 |
+
// = OneDrive Extension About =
|
| 543 |
+
// ============================
|
| 544 |
+
if ( ! defined( 'AI1WMOE_PLUGIN_ABOUT' ) ) {
|
| 545 |
+
define( 'AI1WMOE_PLUGIN_ABOUT', 'https://servmask.com/products/onedrive-extension/about' );
|
| 546 |
+
}
|
| 547 |
+
|
| 548 |
+
// ==========================
|
| 549 |
+
// = OneDrive Extension Key =
|
| 550 |
+
// ==========================
|
| 551 |
+
if ( ! defined( 'AI1WMOE_PLUGIN_KEY' ) ) {
|
| 552 |
+
define( 'AI1WMOE_PLUGIN_KEY', 'ai1wmoe_plugin_key' );
|
| 553 |
+
}
|
| 554 |
+
|
| 555 |
+
// ============================
|
| 556 |
+
// = OneDrive Extension Short =
|
| 557 |
+
// ============================
|
| 558 |
+
if ( ! defined( 'AI1WMOE_PLUGIN_SHORT' ) ) {
|
| 559 |
+
define( 'AI1WMOE_PLUGIN_SHORT', 'onedrive' );
|
| 560 |
+
}
|
| 561 |
+
|
| 562 |
+
// ================================
|
| 563 |
+
// = Amazon S3 Extension Base Dir =
|
| 564 |
+
// ================================
|
| 565 |
+
if ( defined( 'AI1WMSE_PLUGIN_BASENAME' ) ) {
|
| 566 |
+
define( 'AI1WMSE_PLUGIN_BASEDIR', dirname( AI1WMSE_PLUGIN_BASENAME ) );
|
| 567 |
+
} else {
|
| 568 |
+
define( 'AI1WMSE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-s3-extension' );
|
| 569 |
+
}
|
| 570 |
+
|
| 571 |
+
// =============================
|
| 572 |
+
// = Amazon S3 Extension About =
|
| 573 |
+
// =============================
|
| 574 |
+
if ( ! defined( 'AI1WMSE_PLUGIN_ABOUT' ) ) {
|
| 575 |
+
define( 'AI1WMSE_PLUGIN_ABOUT', 'https://servmask.com/products/amazon-s3-extension/about' );
|
| 576 |
+
}
|
| 577 |
+
|
| 578 |
+
// ===========================
|
| 579 |
+
// = Amazon S3 Extension Key =
|
| 580 |
+
// ===========================
|
| 581 |
+
if ( ! defined( 'AI1WMSE_PLUGIN_KEY' ) ) {
|
| 582 |
+
define( 'AI1WMSE_PLUGIN_KEY', 'ai1wmse_plugin_key' );
|
| 583 |
+
}
|
| 584 |
+
|
| 585 |
+
// =============================
|
| 586 |
+
// = Amazon S3 Extension Short =
|
| 587 |
+
// =============================
|
| 588 |
+
if ( ! defined( 'AI1WMSE_PLUGIN_SHORT' ) ) {
|
| 589 |
+
define( 'AI1WMSE_PLUGIN_SHORT', 's3' );
|
| 590 |
+
}
|
| 591 |
+
|
| 592 |
// ================================
|
| 593 |
// = Unlimited Extension Base Dir =
|
| 594 |
// ================================
|
| 619 |
define( 'AI1WMUE_PLUGIN_SHORT', 'unlimited' );
|
| 620 |
}
|
| 621 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 622 |
// ==========================
|
| 623 |
// = URL Extension Base Dir =
|
| 624 |
// ==========================
|
| 648 |
if ( ! defined( 'AI1WMLE_PLUGIN_SHORT' ) ) {
|
| 649 |
define( 'AI1WMLE_PLUGIN_SHORT', 'url' );
|
| 650 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
exceptions.php
CHANGED
|
@@ -39,3 +39,4 @@ class Ai1wm_Not_Directory_Exception extends Exception {}
|
|
| 39 |
class Ai1wm_Not_Valid_Secret_Key_Exception extends Exception {}
|
| 40 |
class Ai1wm_Quota_Exceeded_Exception extends Exception {}
|
| 41 |
class Ai1wm_Storage_Exception extends Exception {}
|
|
|
| 39 |
class Ai1wm_Not_Valid_Secret_Key_Exception extends Exception {}
|
| 40 |
class Ai1wm_Quota_Exceeded_Exception extends Exception {}
|
| 41 |
class Ai1wm_Storage_Exception extends Exception {}
|
| 42 |
+
class Ai1wm_Compatibility_Exception extends Exception {}
|
functions.php
CHANGED
|
@@ -339,6 +339,36 @@ function ai1wm_archive_folder( $blog_id = null ) {
|
|
| 339 |
return strtolower( implode( '-', $name ) );
|
| 340 |
}
|
| 341 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 342 |
/**
|
| 343 |
* Get storage folder name
|
| 344 |
*
|
|
@@ -503,6 +533,20 @@ function ai1wm_plugin_filters( $filters = array() ) {
|
|
| 503 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration';
|
| 504 |
}
|
| 505 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 506 |
// Dropbox Extension
|
| 507 |
if ( defined( 'AI1WMDE_PLUGIN_BASENAME' ) ) {
|
| 508 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname( AI1WMDE_PLUGIN_BASENAME );
|
|
@@ -510,6 +554,13 @@ function ai1wm_plugin_filters( $filters = array() ) {
|
|
| 510 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-dropbox-extension';
|
| 511 |
}
|
| 512 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 513 |
// Google Drive Extension
|
| 514 |
if ( defined( 'AI1WMGE_PLUGIN_BASENAME' ) ) {
|
| 515 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname( AI1WMGE_PLUGIN_BASENAME );
|
|
@@ -517,11 +568,11 @@ function ai1wm_plugin_filters( $filters = array() ) {
|
|
| 517 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-gdrive-extension';
|
| 518 |
}
|
| 519 |
|
| 520 |
-
//
|
| 521 |
-
if ( defined( '
|
| 522 |
-
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname(
|
| 523 |
} else {
|
| 524 |
-
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-
|
| 525 |
}
|
| 526 |
|
| 527 |
// Multisite Extension
|
|
@@ -531,6 +582,20 @@ function ai1wm_plugin_filters( $filters = array() ) {
|
|
| 531 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-multisite-extension';
|
| 532 |
}
|
| 533 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 534 |
// Unlimited Extension
|
| 535 |
if ( defined( 'AI1WMUE_PLUGIN_BASENAME' ) ) {
|
| 536 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname( AI1WMUE_PLUGIN_BASENAME );
|
|
@@ -538,13 +603,6 @@ function ai1wm_plugin_filters( $filters = array() ) {
|
|
| 538 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-unlimited-extension';
|
| 539 |
}
|
| 540 |
|
| 541 |
-
// FTP Extension
|
| 542 |
-
if ( defined( 'AI1WMFE_PLUGIN_BASENAME' ) ) {
|
| 543 |
-
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname( AI1WMFE_PLUGIN_BASENAME );
|
| 544 |
-
} else {
|
| 545 |
-
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-ftp-extension';
|
| 546 |
-
}
|
| 547 |
-
|
| 548 |
// URL Extension
|
| 549 |
if ( defined( 'AI1WMLE_PLUGIN_BASENAME' ) ) {
|
| 550 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname( AI1WMLE_PLUGIN_BASENAME );
|
|
@@ -552,27 +610,6 @@ function ai1wm_plugin_filters( $filters = array() ) {
|
|
| 552 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-url-extension';
|
| 553 |
}
|
| 554 |
|
| 555 |
-
// OneDrive Extension
|
| 556 |
-
if ( defined( 'AI1WMOE_PLUGIN_BASENAME' ) ) {
|
| 557 |
-
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname( AI1WMOE_PLUGIN_BASENAME );
|
| 558 |
-
} else {
|
| 559 |
-
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-onedrive-extension';
|
| 560 |
-
}
|
| 561 |
-
|
| 562 |
-
// Box Extension
|
| 563 |
-
if ( defined( 'AI1WMBE_PLUGIN_BASENAME' ) ) {
|
| 564 |
-
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname( AI1WMBE_PLUGIN_BASENAME );
|
| 565 |
-
} else {
|
| 566 |
-
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-box-extension';
|
| 567 |
-
}
|
| 568 |
-
|
| 569 |
-
// Mega Extension
|
| 570 |
-
if ( defined( 'AI1WMEE_PLUGIN_BASENAME' ) ) {
|
| 571 |
-
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname( AI1WMEE_PLUGIN_BASENAME );
|
| 572 |
-
} else {
|
| 573 |
-
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-mega-extension';
|
| 574 |
-
}
|
| 575 |
-
|
| 576 |
return $filters;
|
| 577 |
}
|
| 578 |
|
|
@@ -587,19 +624,34 @@ function ai1wm_active_servmask_plugins( $plugins = array() ) {
|
|
| 587 |
$plugins[] = AI1WM_PLUGIN_BASENAME;
|
| 588 |
}
|
| 589 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 590 |
// Dropbox Extension
|
| 591 |
if ( defined( 'AI1WMDE_PLUGIN_BASENAME' ) ) {
|
| 592 |
$plugins[] = AI1WMDE_PLUGIN_BASENAME;
|
| 593 |
}
|
| 594 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 595 |
// Google Drive Extension
|
| 596 |
if ( defined( 'AI1WMGE_PLUGIN_BASENAME' ) ) {
|
| 597 |
$plugins[] = AI1WMGE_PLUGIN_BASENAME;
|
| 598 |
}
|
| 599 |
|
| 600 |
-
//
|
| 601 |
-
if ( defined( '
|
| 602 |
-
$plugins[] =
|
| 603 |
}
|
| 604 |
|
| 605 |
// Multisite Extension
|
|
@@ -607,36 +659,26 @@ function ai1wm_active_servmask_plugins( $plugins = array() ) {
|
|
| 607 |
$plugins[] = AI1WMME_PLUGIN_BASENAME;
|
| 608 |
}
|
| 609 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 610 |
// Unlimited Extension
|
| 611 |
if ( defined( 'AI1WMUE_PLUGIN_BASENAME' ) ) {
|
| 612 |
$plugins[] = AI1WMUE_PLUGIN_BASENAME;
|
| 613 |
}
|
| 614 |
|
| 615 |
-
// FTP Extension
|
| 616 |
-
if ( defined( 'AI1WMFE_PLUGIN_BASENAME' ) ) {
|
| 617 |
-
$plugins[] = AI1WMFE_PLUGIN_BASENAME;
|
| 618 |
-
}
|
| 619 |
-
|
| 620 |
// URL Extension
|
| 621 |
if ( defined( 'AI1WMLE_PLUGIN_BASENAME' ) ) {
|
| 622 |
$plugins[] = AI1WMLE_PLUGIN_BASENAME;
|
| 623 |
}
|
| 624 |
|
| 625 |
-
// OneDrive Extension
|
| 626 |
-
if ( defined( 'AI1WMOE_PLUGIN_BASENAME' ) ) {
|
| 627 |
-
$plugins[] = AI1WMOE_PLUGIN_BASENAME;
|
| 628 |
-
}
|
| 629 |
-
|
| 630 |
-
// Box Extension
|
| 631 |
-
if ( defined( 'AI1WMBE_PLUGIN_BASENAME' ) ) {
|
| 632 |
-
$plugins[] = AI1WMBE_PLUGIN_BASENAME;
|
| 633 |
-
}
|
| 634 |
-
|
| 635 |
-
// Mega Extension
|
| 636 |
-
if ( defined( 'AI1WMEE_PLUGIN_BASENAME' ) ) {
|
| 637 |
-
$plugins[] = AI1WMEE_PLUGIN_BASENAME;
|
| 638 |
-
}
|
| 639 |
-
|
| 640 |
return $plugins;
|
| 641 |
}
|
| 642 |
|
|
@@ -1093,3 +1135,13 @@ function ai1wm_verify_secret_key( $secret_key ) {
|
|
| 1093 |
|
| 1094 |
return true;
|
| 1095 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 339 |
return strtolower( implode( '-', $name ) );
|
| 340 |
}
|
| 341 |
|
| 342 |
+
/**
|
| 343 |
+
* Get archive bucket name
|
| 344 |
+
*
|
| 345 |
+
* @param integer $blog_id Blog ID
|
| 346 |
+
* @return string
|
| 347 |
+
*/
|
| 348 |
+
function ai1wm_archive_bucket( $blog_id = null ) {
|
| 349 |
+
$name = array();
|
| 350 |
+
|
| 351 |
+
// Add domain
|
| 352 |
+
if ( ( $domain = explode( '.', parse_url( get_site_url( $blog_id ), PHP_URL_HOST ) ) ) ) {
|
| 353 |
+
foreach ( $domain as $subdomain ) {
|
| 354 |
+
if ( $subdomain ) {
|
| 355 |
+
$name[] = $subdomain;
|
| 356 |
+
}
|
| 357 |
+
}
|
| 358 |
+
}
|
| 359 |
+
|
| 360 |
+
// Add path
|
| 361 |
+
if ( ( $path = explode( '/', parse_url( get_site_url( $blog_id ), PHP_URL_PATH ) ) ) ) {
|
| 362 |
+
foreach ( $path as $directory ) {
|
| 363 |
+
if ( $directory ) {
|
| 364 |
+
$name[] = $directory;
|
| 365 |
+
}
|
| 366 |
+
}
|
| 367 |
+
}
|
| 368 |
+
|
| 369 |
+
return strtolower( implode( '-', $name ) );
|
| 370 |
+
}
|
| 371 |
+
|
| 372 |
/**
|
| 373 |
* Get storage folder name
|
| 374 |
*
|
| 533 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration';
|
| 534 |
}
|
| 535 |
|
| 536 |
+
// Box Extension
|
| 537 |
+
if ( defined( 'AI1WMBE_PLUGIN_BASENAME' ) ) {
|
| 538 |
+
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname( AI1WMBE_PLUGIN_BASENAME );
|
| 539 |
+
} else {
|
| 540 |
+
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-box-extension';
|
| 541 |
+
}
|
| 542 |
+
|
| 543 |
+
// DigitalOcean Extension
|
| 544 |
+
if ( defined( 'AI1WMIE_PLUGIN_BASENAME' ) ) {
|
| 545 |
+
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname( AI1WMIE_PLUGIN_BASENAME );
|
| 546 |
+
} else {
|
| 547 |
+
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-digitalocean-extension';
|
| 548 |
+
}
|
| 549 |
+
|
| 550 |
// Dropbox Extension
|
| 551 |
if ( defined( 'AI1WMDE_PLUGIN_BASENAME' ) ) {
|
| 552 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname( AI1WMDE_PLUGIN_BASENAME );
|
| 554 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-dropbox-extension';
|
| 555 |
}
|
| 556 |
|
| 557 |
+
// FTP Extension
|
| 558 |
+
if ( defined( 'AI1WMFE_PLUGIN_BASENAME' ) ) {
|
| 559 |
+
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname( AI1WMFE_PLUGIN_BASENAME );
|
| 560 |
+
} else {
|
| 561 |
+
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-ftp-extension';
|
| 562 |
+
}
|
| 563 |
+
|
| 564 |
// Google Drive Extension
|
| 565 |
if ( defined( 'AI1WMGE_PLUGIN_BASENAME' ) ) {
|
| 566 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname( AI1WMGE_PLUGIN_BASENAME );
|
| 568 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-gdrive-extension';
|
| 569 |
}
|
| 570 |
|
| 571 |
+
// Mega Extension
|
| 572 |
+
if ( defined( 'AI1WMEE_PLUGIN_BASENAME' ) ) {
|
| 573 |
+
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname( AI1WMEE_PLUGIN_BASENAME );
|
| 574 |
} else {
|
| 575 |
+
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-mega-extension';
|
| 576 |
}
|
| 577 |
|
| 578 |
// Multisite Extension
|
| 582 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-multisite-extension';
|
| 583 |
}
|
| 584 |
|
| 585 |
+
// OneDrive Extension
|
| 586 |
+
if ( defined( 'AI1WMOE_PLUGIN_BASENAME' ) ) {
|
| 587 |
+
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname( AI1WMOE_PLUGIN_BASENAME );
|
| 588 |
+
} else {
|
| 589 |
+
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-onedrive-extension';
|
| 590 |
+
}
|
| 591 |
+
|
| 592 |
+
// Amazon S3 Extension
|
| 593 |
+
if ( defined( 'AI1WMSE_PLUGIN_BASENAME' ) ) {
|
| 594 |
+
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname( AI1WMSE_PLUGIN_BASENAME );
|
| 595 |
+
} else {
|
| 596 |
+
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-s3-extension';
|
| 597 |
+
}
|
| 598 |
+
|
| 599 |
// Unlimited Extension
|
| 600 |
if ( defined( 'AI1WMUE_PLUGIN_BASENAME' ) ) {
|
| 601 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname( AI1WMUE_PLUGIN_BASENAME );
|
| 603 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-unlimited-extension';
|
| 604 |
}
|
| 605 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 606 |
// URL Extension
|
| 607 |
if ( defined( 'AI1WMLE_PLUGIN_BASENAME' ) ) {
|
| 608 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . dirname( AI1WMLE_PLUGIN_BASENAME );
|
| 610 |
$filters[] = 'plugins' . DIRECTORY_SEPARATOR . 'all-in-one-wp-migration-url-extension';
|
| 611 |
}
|
| 612 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 613 |
return $filters;
|
| 614 |
}
|
| 615 |
|
| 624 |
$plugins[] = AI1WM_PLUGIN_BASENAME;
|
| 625 |
}
|
| 626 |
|
| 627 |
+
// Box Extension
|
| 628 |
+
if ( defined( 'AI1WMBE_PLUGIN_BASENAME' ) ) {
|
| 629 |
+
$plugins[] = AI1WMBE_PLUGIN_BASENAME;
|
| 630 |
+
}
|
| 631 |
+
|
| 632 |
+
// DigitalOcean Extension
|
| 633 |
+
if ( defined( 'AI1WMIE_PLUGIN_BASENAME' ) ) {
|
| 634 |
+
$plugins[] = AI1WMIE_PLUGIN_BASENAME;
|
| 635 |
+
}
|
| 636 |
+
|
| 637 |
// Dropbox Extension
|
| 638 |
if ( defined( 'AI1WMDE_PLUGIN_BASENAME' ) ) {
|
| 639 |
$plugins[] = AI1WMDE_PLUGIN_BASENAME;
|
| 640 |
}
|
| 641 |
|
| 642 |
+
// FTP Extension
|
| 643 |
+
if ( defined( 'AI1WMFE_PLUGIN_BASENAME' ) ) {
|
| 644 |
+
$plugins[] = AI1WMFE_PLUGIN_BASENAME;
|
| 645 |
+
}
|
| 646 |
+
|
| 647 |
// Google Drive Extension
|
| 648 |
if ( defined( 'AI1WMGE_PLUGIN_BASENAME' ) ) {
|
| 649 |
$plugins[] = AI1WMGE_PLUGIN_BASENAME;
|
| 650 |
}
|
| 651 |
|
| 652 |
+
// Mega Extension
|
| 653 |
+
if ( defined( 'AI1WMEE_PLUGIN_BASENAME' ) ) {
|
| 654 |
+
$plugins[] = AI1WMEE_PLUGIN_BASENAME;
|
| 655 |
}
|
| 656 |
|
| 657 |
// Multisite Extension
|
| 659 |
$plugins[] = AI1WMME_PLUGIN_BASENAME;
|
| 660 |
}
|
| 661 |
|
| 662 |
+
// OneDrive Extension
|
| 663 |
+
if ( defined( 'AI1WMOE_PLUGIN_BASENAME' ) ) {
|
| 664 |
+
$plugins[] = AI1WMOE_PLUGIN_BASENAME;
|
| 665 |
+
}
|
| 666 |
+
|
| 667 |
+
// Amazon S3 Extension
|
| 668 |
+
if ( defined( 'AI1WMSE_PLUGIN_BASENAME' ) ) {
|
| 669 |
+
$plugins[] = AI1WMSE_PLUGIN_BASENAME;
|
| 670 |
+
}
|
| 671 |
+
|
| 672 |
// Unlimited Extension
|
| 673 |
if ( defined( 'AI1WMUE_PLUGIN_BASENAME' ) ) {
|
| 674 |
$plugins[] = AI1WMUE_PLUGIN_BASENAME;
|
| 675 |
}
|
| 676 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 677 |
// URL Extension
|
| 678 |
if ( defined( 'AI1WMLE_PLUGIN_BASENAME' ) ) {
|
| 679 |
$plugins[] = AI1WMLE_PLUGIN_BASENAME;
|
| 680 |
}
|
| 681 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 682 |
return $plugins;
|
| 683 |
}
|
| 684 |
|
| 1135 |
|
| 1136 |
return true;
|
| 1137 |
}
|
| 1138 |
+
|
| 1139 |
+
/**
|
| 1140 |
+
* Is scheduled backup?
|
| 1141 |
+
*
|
| 1142 |
+
* @return boolean
|
| 1143 |
+
*/
|
| 1144 |
+
function ai1wm_is_scheduled_backup() {
|
| 1145 |
+
return empty( $_REQUEST['ai1wm_manual_export'] ) && empty( $_REQUEST['ai1wm_manual_import'] ) && empty( $_REQUEST['ai1wm_manual_restore'] );
|
| 1146 |
+
}
|
| 1147 |
+
|
lib/controller/class-ai1wm-export-controller.php
CHANGED
|
@@ -85,7 +85,8 @@ class Ai1wm_Export_Controller {
|
|
| 85 |
Ai1wm_Log::export( $params );
|
| 86 |
|
| 87 |
} catch ( Exception $e ) {
|
| 88 |
-
Ai1wm_Status::error( $e->getMessage() );
|
|
|
|
| 89 |
Ai1wm_Directory::delete( ai1wm_storage_path( $params ) );
|
| 90 |
exit;
|
| 91 |
}
|
|
@@ -123,6 +124,7 @@ class Ai1wm_Export_Controller {
|
|
| 123 |
apply_filters( 'ai1wm_export_onedrive', Ai1wm_Template::get_content( 'export/button-onedrive' ) ),
|
| 124 |
apply_filters( 'ai1wm_export_box', Ai1wm_Template::get_content( 'export/button-box' ) ),
|
| 125 |
apply_filters( 'ai1wm_export_mega', Ai1wm_Template::get_content( 'export/button-mega' ) ),
|
|
|
|
| 126 |
);
|
| 127 |
}
|
| 128 |
}
|
| 85 |
Ai1wm_Log::export( $params );
|
| 86 |
|
| 87 |
} catch ( Exception $e ) {
|
| 88 |
+
Ai1wm_Status::error( __( 'Unable to export', AI1WM_PLUGIN_NAME ), $e->getMessage() );
|
| 89 |
+
Ai1wm_Notification::error( __( 'Unable to export', AI1WM_PLUGIN_NAME ), $e->getMessage() );
|
| 90 |
Ai1wm_Directory::delete( ai1wm_storage_path( $params ) );
|
| 91 |
exit;
|
| 92 |
}
|
| 124 |
apply_filters( 'ai1wm_export_onedrive', Ai1wm_Template::get_content( 'export/button-onedrive' ) ),
|
| 125 |
apply_filters( 'ai1wm_export_box', Ai1wm_Template::get_content( 'export/button-box' ) ),
|
| 126 |
apply_filters( 'ai1wm_export_mega', Ai1wm_Template::get_content( 'export/button-mega' ) ),
|
| 127 |
+
apply_filters( 'ai1wm_export_digitalocean', Ai1wm_Template::get_content( 'export/button-digitalocean' ) ),
|
| 128 |
);
|
| 129 |
}
|
| 130 |
}
|
lib/controller/class-ai1wm-import-controller.php
CHANGED
|
@@ -89,7 +89,8 @@ class Ai1wm_Import_Controller {
|
|
| 89 |
echo json_encode( array( 'errors' => array( array( 'code' => $e->getCode(), 'message' => $e->getMessage() ) ) ) );
|
| 90 |
exit;
|
| 91 |
} catch ( Exception $e ) {
|
| 92 |
-
Ai1wm_Status::error( $e->getMessage() );
|
|
|
|
| 93 |
Ai1wm_Directory::delete( ai1wm_storage_path( $params ) );
|
| 94 |
exit;
|
| 95 |
}
|
|
@@ -128,6 +129,7 @@ class Ai1wm_Import_Controller {
|
|
| 128 |
apply_filters( 'ai1wm_import_onedrive', Ai1wm_Template::get_content( 'import/button-onedrive' ) ),
|
| 129 |
apply_filters( 'ai1wm_import_box', Ai1wm_Template::get_content( 'import/button-box' ) ),
|
| 130 |
apply_filters( 'ai1wm_import_mega', Ai1wm_Template::get_content( 'import/button-mega' ) ),
|
|
|
|
| 131 |
);
|
| 132 |
}
|
| 133 |
|
| 89 |
echo json_encode( array( 'errors' => array( array( 'code' => $e->getCode(), 'message' => $e->getMessage() ) ) ) );
|
| 90 |
exit;
|
| 91 |
} catch ( Exception $e ) {
|
| 92 |
+
Ai1wm_Status::error( __( 'Unable to import', AI1WM_PLUGIN_NAME ), $e->getMessage() );
|
| 93 |
+
Ai1wm_Notification::error( __( 'Unable to import', AI1WM_PLUGIN_NAME ), $e->getMessage() );
|
| 94 |
Ai1wm_Directory::delete( ai1wm_storage_path( $params ) );
|
| 95 |
exit;
|
| 96 |
}
|
| 129 |
apply_filters( 'ai1wm_import_onedrive', Ai1wm_Template::get_content( 'import/button-onedrive' ) ),
|
| 130 |
apply_filters( 'ai1wm_import_box', Ai1wm_Template::get_content( 'import/button-box' ) ),
|
| 131 |
apply_filters( 'ai1wm_import_mega', Ai1wm_Template::get_content( 'import/button-mega' ) ),
|
| 132 |
+
apply_filters( 'ai1wm_import_digitalocean', Ai1wm_Template::get_content( 'import/button-digitalocean' ) ),
|
| 133 |
);
|
| 134 |
}
|
| 135 |
|
lib/controller/class-ai1wm-main-controller.php
CHANGED
|
@@ -126,8 +126,8 @@ class Ai1wm_Main_Controller {
|
|
| 126 |
add_filter( 'ai1wm_export', 'Ai1wm_Export_Init::execute', 5 );
|
| 127 |
add_filter( 'ai1wm_export', 'Ai1wm_Export_Compatibility::execute', 5 );
|
| 128 |
|
| 129 |
-
//
|
| 130 |
-
if (
|
| 131 |
add_filter( 'ai1wm_export', 'Ai1wm_Export_Resolve::execute', 5 );
|
| 132 |
}
|
| 133 |
|
|
@@ -144,8 +144,8 @@ class Ai1wm_Main_Controller {
|
|
| 144 |
add_filter( 'ai1wm_import', 'Ai1wm_Import_Upload::execute', 5 );
|
| 145 |
add_filter( 'ai1wm_import', 'Ai1wm_Import_Compatibility::execute', 10 );
|
| 146 |
|
| 147 |
-
//
|
| 148 |
-
if (
|
| 149 |
add_filter( 'ai1wm_import', 'Ai1wm_Import_Resolve::execute', 10 );
|
| 150 |
}
|
| 151 |
|
| 126 |
add_filter( 'ai1wm_export', 'Ai1wm_Export_Init::execute', 5 );
|
| 127 |
add_filter( 'ai1wm_export', 'Ai1wm_Export_Compatibility::execute', 5 );
|
| 128 |
|
| 129 |
+
// Resolve URL address
|
| 130 |
+
if ( ai1wm_is_scheduled_backup() ) {
|
| 131 |
add_filter( 'ai1wm_export', 'Ai1wm_Export_Resolve::execute', 5 );
|
| 132 |
}
|
| 133 |
|
| 144 |
add_filter( 'ai1wm_import', 'Ai1wm_Import_Upload::execute', 5 );
|
| 145 |
add_filter( 'ai1wm_import', 'Ai1wm_Import_Compatibility::execute', 10 );
|
| 146 |
|
| 147 |
+
// Resolve URL address
|
| 148 |
+
if ( ai1wm_is_scheduled_backup() ) {
|
| 149 |
add_filter( 'ai1wm_import', 'Ai1wm_Import_Resolve::execute', 10 );
|
| 150 |
}
|
| 151 |
|
lib/model/class-ai1wm-compatibility.php
CHANGED
|
@@ -24,6 +24,7 @@
|
|
| 24 |
*/
|
| 25 |
|
| 26 |
class Ai1wm_Compatibility {
|
|
|
|
| 27 |
public static function get( $params ) {
|
| 28 |
$extensions = Ai1wm_Extensions::get();
|
| 29 |
|
|
@@ -52,12 +53,16 @@ class Ai1wm_Compatibility {
|
|
| 52 |
public static function check( $extension ) {
|
| 53 |
if ( $extension['version'] !== 'develop' ) {
|
| 54 |
if ( version_compare( $extension['version'], $extension['requires'], '<' ) ) {
|
| 55 |
-
$plugin = get_plugin_data( sprintf( '%s/%s', WP_PLUGIN_DIR, $extension['basename'] ) )
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
}
|
| 62 |
}
|
| 63 |
}
|
| 24 |
*/
|
| 25 |
|
| 26 |
class Ai1wm_Compatibility {
|
| 27 |
+
|
| 28 |
public static function get( $params ) {
|
| 29 |
$extensions = Ai1wm_Extensions::get();
|
| 30 |
|
| 53 |
public static function check( $extension ) {
|
| 54 |
if ( $extension['version'] !== 'develop' ) {
|
| 55 |
if ( version_compare( $extension['version'], $extension['requires'], '<' ) ) {
|
| 56 |
+
if ( ( $plugin = get_plugin_data( sprintf( '%s/%s', WP_PLUGIN_DIR, $extension['basename'] ) ) ) ) {
|
| 57 |
+
return sprintf(
|
| 58 |
+
__(
|
| 59 |
+
'<strong>%s</strong> is not the latest version. ' .
|
| 60 |
+
'You must update the plugin before you can use it. <br />',
|
| 61 |
+
AI1WM_PLUGIN_NAME
|
| 62 |
+
),
|
| 63 |
+
$plugin['Name']
|
| 64 |
+
);
|
| 65 |
+
}
|
| 66 |
}
|
| 67 |
}
|
| 68 |
}
|
lib/model/class-ai1wm-extensions.php
CHANGED
|
@@ -33,6 +33,30 @@ class Ai1wm_Extensions {
|
|
| 33 |
public static function get() {
|
| 34 |
$extensions = array();
|
| 35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
// Add Dropbox Extension
|
| 37 |
if ( defined( 'AI1WMDE_PLUGIN_NAME' ) ) {
|
| 38 |
$extensions[ AI1WMDE_PLUGIN_NAME ] = array(
|
|
@@ -40,11 +64,23 @@ class Ai1wm_Extensions {
|
|
| 40 |
'about' => AI1WMDE_PLUGIN_ABOUT,
|
| 41 |
'basename' => AI1WMDE_PLUGIN_BASENAME,
|
| 42 |
'version' => AI1WMDE_VERSION,
|
| 43 |
-
'requires' => '3.
|
| 44 |
'short' => AI1WMDE_PLUGIN_SHORT,
|
| 45 |
);
|
| 46 |
}
|
| 47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
// Add Google Drive Extension
|
| 49 |
if ( defined( 'AI1WMGE_PLUGIN_NAME' ) ) {
|
| 50 |
$extensions[ AI1WMGE_PLUGIN_NAME ] = array(
|
|
@@ -52,20 +88,20 @@ class Ai1wm_Extensions {
|
|
| 52 |
'about' => AI1WMGE_PLUGIN_ABOUT,
|
| 53 |
'basename' => AI1WMGE_PLUGIN_BASENAME,
|
| 54 |
'version' => AI1WMGE_VERSION,
|
| 55 |
-
'requires' => '2.
|
| 56 |
'short' => AI1WMGE_PLUGIN_SHORT,
|
| 57 |
);
|
| 58 |
}
|
| 59 |
|
| 60 |
-
// Add
|
| 61 |
-
if ( defined( '
|
| 62 |
-
$extensions[
|
| 63 |
-
'key' =>
|
| 64 |
-
'about' =>
|
| 65 |
-
'basename' =>
|
| 66 |
-
'version' =>
|
| 67 |
-
'requires' => '
|
| 68 |
-
'short' =>
|
| 69 |
);
|
| 70 |
}
|
| 71 |
|
|
@@ -76,11 +112,35 @@ class Ai1wm_Extensions {
|
|
| 76 |
'about' => AI1WMME_PLUGIN_ABOUT,
|
| 77 |
'basename' => AI1WMME_PLUGIN_BASENAME,
|
| 78 |
'version' => AI1WMME_VERSION,
|
| 79 |
-
'requires' => '3.
|
| 80 |
'short' => AI1WMME_PLUGIN_SHORT,
|
| 81 |
);
|
| 82 |
}
|
| 83 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 84 |
// Add Unlimited Extension
|
| 85 |
if ( defined( 'AI1WMUE_PLUGIN_NAME' ) ) {
|
| 86 |
$extensions[ AI1WMUE_PLUGIN_NAME ] = array(
|
|
@@ -88,23 +148,11 @@ class Ai1wm_Extensions {
|
|
| 88 |
'about' => AI1WMUE_PLUGIN_ABOUT,
|
| 89 |
'basename' => AI1WMUE_PLUGIN_BASENAME,
|
| 90 |
'version' => AI1WMUE_VERSION,
|
| 91 |
-
'requires' => '2.
|
| 92 |
'short' => AI1WMUE_PLUGIN_SHORT,
|
| 93 |
);
|
| 94 |
}
|
| 95 |
|
| 96 |
-
// Add FTP Extension
|
| 97 |
-
if ( defined( 'AI1WMFE_PLUGIN_NAME' ) ) {
|
| 98 |
-
$extensions[ AI1WMFE_PLUGIN_NAME ] = array(
|
| 99 |
-
'key' => AI1WMFE_PLUGIN_KEY,
|
| 100 |
-
'about' => AI1WMFE_PLUGIN_ABOUT,
|
| 101 |
-
'basename' => AI1WMFE_PLUGIN_BASENAME,
|
| 102 |
-
'version' => AI1WMFE_VERSION,
|
| 103 |
-
'requires' => '2.11',
|
| 104 |
-
'short' => AI1WMFE_PLUGIN_SHORT,
|
| 105 |
-
);
|
| 106 |
-
}
|
| 107 |
-
|
| 108 |
// Add URL Extension
|
| 109 |
if ( defined( 'AI1WMLE_PLUGIN_NAME' ) ) {
|
| 110 |
$extensions[ AI1WMLE_PLUGIN_NAME ] = array(
|
|
@@ -112,47 +160,11 @@ class Ai1wm_Extensions {
|
|
| 112 |
'about' => AI1WMLE_PLUGIN_ABOUT,
|
| 113 |
'basename' => AI1WMLE_PLUGIN_BASENAME,
|
| 114 |
'version' => AI1WMLE_VERSION,
|
| 115 |
-
'requires' => '2.
|
| 116 |
'short' => AI1WMLE_PLUGIN_SHORT,
|
| 117 |
);
|
| 118 |
}
|
| 119 |
|
| 120 |
-
// Add OneDrive Extension
|
| 121 |
-
if ( defined( 'AI1WMOE_PLUGIN_NAME' ) ) {
|
| 122 |
-
$extensions[ AI1WMOE_PLUGIN_NAME ] = array(
|
| 123 |
-
'key' => AI1WMOE_PLUGIN_KEY,
|
| 124 |
-
'about' => AI1WMOE_PLUGIN_ABOUT,
|
| 125 |
-
'basename' => AI1WMOE_PLUGIN_BASENAME,
|
| 126 |
-
'version' => AI1WMOE_VERSION,
|
| 127 |
-
'requires' => '1.6',
|
| 128 |
-
'short' => AI1WMOE_PLUGIN_SHORT,
|
| 129 |
-
);
|
| 130 |
-
}
|
| 131 |
-
|
| 132 |
-
// Add Box Extension
|
| 133 |
-
if ( defined( 'AI1WMBE_PLUGIN_NAME' ) ) {
|
| 134 |
-
$extensions[ AI1WMBE_PLUGIN_NAME ] = array(
|
| 135 |
-
'key' => AI1WMBE_PLUGIN_KEY,
|
| 136 |
-
'about' => AI1WMBE_PLUGIN_ABOUT,
|
| 137 |
-
'basename' => AI1WMBE_PLUGIN_BASENAME,
|
| 138 |
-
'version' => AI1WMBE_VERSION,
|
| 139 |
-
'requires' => '1.0',
|
| 140 |
-
'short' => AI1WMBE_PLUGIN_SHORT,
|
| 141 |
-
);
|
| 142 |
-
}
|
| 143 |
-
|
| 144 |
-
// Add Mega Extension
|
| 145 |
-
if ( defined( 'AI1WMEE_PLUGIN_NAME' ) ) {
|
| 146 |
-
$extensions[ AI1WMEE_PLUGIN_NAME ] = array(
|
| 147 |
-
'key' => AI1WMEE_PLUGIN_KEY,
|
| 148 |
-
'about' => AI1WMEE_PLUGIN_ABOUT,
|
| 149 |
-
'basename' => AI1WMEE_PLUGIN_BASENAME,
|
| 150 |
-
'version' => AI1WMEE_VERSION,
|
| 151 |
-
'requires' => '1.0',
|
| 152 |
-
'short' => AI1WMEE_PLUGIN_SHORT,
|
| 153 |
-
);
|
| 154 |
-
}
|
| 155 |
-
|
| 156 |
return $extensions;
|
| 157 |
}
|
| 158 |
}
|
| 33 |
public static function get() {
|
| 34 |
$extensions = array();
|
| 35 |
|
| 36 |
+
// Add Box Extension
|
| 37 |
+
if ( defined( 'AI1WMBE_PLUGIN_NAME' ) ) {
|
| 38 |
+
$extensions[ AI1WMBE_PLUGIN_NAME ] = array(
|
| 39 |
+
'key' => AI1WMBE_PLUGIN_KEY,
|
| 40 |
+
'about' => AI1WMBE_PLUGIN_ABOUT,
|
| 41 |
+
'basename' => AI1WMBE_PLUGIN_BASENAME,
|
| 42 |
+
'version' => AI1WMBE_VERSION,
|
| 43 |
+
'requires' => '1.9',
|
| 44 |
+
'short' => AI1WMBE_PLUGIN_SHORT,
|
| 45 |
+
);
|
| 46 |
+
}
|
| 47 |
+
|
| 48 |
+
// Add DigitalOcean Extension
|
| 49 |
+
if ( defined( 'AI1WMIE_PLUGIN_NAME' ) ) {
|
| 50 |
+
$extensions[ AI1WMIE_PLUGIN_NAME ] = array(
|
| 51 |
+
'key' => AI1WMIE_PLUGIN_KEY,
|
| 52 |
+
'about' => AI1WMIE_PLUGIN_ABOUT,
|
| 53 |
+
'basename' => AI1WMIE_PLUGIN_BASENAME,
|
| 54 |
+
'version' => AI1WMIE_VERSION,
|
| 55 |
+
'requires' => '1.0',
|
| 56 |
+
'short' => AI1WMIE_PLUGIN_SHORT,
|
| 57 |
+
);
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
// Add Dropbox Extension
|
| 61 |
if ( defined( 'AI1WMDE_PLUGIN_NAME' ) ) {
|
| 62 |
$extensions[ AI1WMDE_PLUGIN_NAME ] = array(
|
| 64 |
'about' => AI1WMDE_PLUGIN_ABOUT,
|
| 65 |
'basename' => AI1WMDE_PLUGIN_BASENAME,
|
| 66 |
'version' => AI1WMDE_VERSION,
|
| 67 |
+
'requires' => '3.28',
|
| 68 |
'short' => AI1WMDE_PLUGIN_SHORT,
|
| 69 |
);
|
| 70 |
}
|
| 71 |
|
| 72 |
+
// Add FTP Extension
|
| 73 |
+
if ( defined( 'AI1WMFE_PLUGIN_NAME' ) ) {
|
| 74 |
+
$extensions[ AI1WMFE_PLUGIN_NAME ] = array(
|
| 75 |
+
'key' => AI1WMFE_PLUGIN_KEY,
|
| 76 |
+
'about' => AI1WMFE_PLUGIN_ABOUT,
|
| 77 |
+
'basename' => AI1WMFE_PLUGIN_BASENAME,
|
| 78 |
+
'version' => AI1WMFE_VERSION,
|
| 79 |
+
'requires' => '2.33',
|
| 80 |
+
'short' => AI1WMFE_PLUGIN_SHORT,
|
| 81 |
+
);
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
// Add Google Drive Extension
|
| 85 |
if ( defined( 'AI1WMGE_PLUGIN_NAME' ) ) {
|
| 86 |
$extensions[ AI1WMGE_PLUGIN_NAME ] = array(
|
| 88 |
'about' => AI1WMGE_PLUGIN_ABOUT,
|
| 89 |
'basename' => AI1WMGE_PLUGIN_BASENAME,
|
| 90 |
'version' => AI1WMGE_VERSION,
|
| 91 |
+
'requires' => '2.30',
|
| 92 |
'short' => AI1WMGE_PLUGIN_SHORT,
|
| 93 |
);
|
| 94 |
}
|
| 95 |
|
| 96 |
+
// Add Mega Extension
|
| 97 |
+
if ( defined( 'AI1WMEE_PLUGIN_NAME' ) ) {
|
| 98 |
+
$extensions[ AI1WMEE_PLUGIN_NAME ] = array(
|
| 99 |
+
'key' => AI1WMEE_PLUGIN_KEY,
|
| 100 |
+
'about' => AI1WMEE_PLUGIN_ABOUT,
|
| 101 |
+
'basename' => AI1WMEE_PLUGIN_BASENAME,
|
| 102 |
+
'version' => AI1WMEE_VERSION,
|
| 103 |
+
'requires' => '1.6',
|
| 104 |
+
'short' => AI1WMEE_PLUGIN_SHORT,
|
| 105 |
);
|
| 106 |
}
|
| 107 |
|
| 112 |
'about' => AI1WMME_PLUGIN_ABOUT,
|
| 113 |
'basename' => AI1WMME_PLUGIN_BASENAME,
|
| 114 |
'version' => AI1WMME_VERSION,
|
| 115 |
+
'requires' => '3.50',
|
| 116 |
'short' => AI1WMME_PLUGIN_SHORT,
|
| 117 |
);
|
| 118 |
}
|
| 119 |
|
| 120 |
+
// Add OneDrive Extension
|
| 121 |
+
if ( defined( 'AI1WMOE_PLUGIN_NAME' ) ) {
|
| 122 |
+
$extensions[ AI1WMOE_PLUGIN_NAME ] = array(
|
| 123 |
+
'key' => AI1WMOE_PLUGIN_KEY,
|
| 124 |
+
'about' => AI1WMOE_PLUGIN_ABOUT,
|
| 125 |
+
'basename' => AI1WMOE_PLUGIN_BASENAME,
|
| 126 |
+
'version' => AI1WMOE_VERSION,
|
| 127 |
+
'requires' => '1.19',
|
| 128 |
+
'short' => AI1WMOE_PLUGIN_SHORT,
|
| 129 |
+
);
|
| 130 |
+
}
|
| 131 |
+
|
| 132 |
+
// Add Amazon S3 extension
|
| 133 |
+
if ( defined( 'AI1WMSE_PLUGIN_NAME' ) ) {
|
| 134 |
+
$extensions[ AI1WMSE_PLUGIN_NAME ] = array(
|
| 135 |
+
'key' => AI1WMSE_PLUGIN_KEY,
|
| 136 |
+
'about' => AI1WMSE_PLUGIN_ABOUT,
|
| 137 |
+
'basename' => AI1WMSE_PLUGIN_BASENAME,
|
| 138 |
+
'version' => AI1WMSE_VERSION,
|
| 139 |
+
'requires' => '3.22',
|
| 140 |
+
'short' => AI1WMSE_PLUGIN_SHORT,
|
| 141 |
+
);
|
| 142 |
+
}
|
| 143 |
+
|
| 144 |
// Add Unlimited Extension
|
| 145 |
if ( defined( 'AI1WMUE_PLUGIN_NAME' ) ) {
|
| 146 |
$extensions[ AI1WMUE_PLUGIN_NAME ] = array(
|
| 148 |
'about' => AI1WMUE_PLUGIN_ABOUT,
|
| 149 |
'basename' => AI1WMUE_PLUGIN_BASENAME,
|
| 150 |
'version' => AI1WMUE_VERSION,
|
| 151 |
+
'requires' => '2.15',
|
| 152 |
'short' => AI1WMUE_PLUGIN_SHORT,
|
| 153 |
);
|
| 154 |
}
|
| 155 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 156 |
// Add URL Extension
|
| 157 |
if ( defined( 'AI1WMLE_PLUGIN_NAME' ) ) {
|
| 158 |
$extensions[ AI1WMLE_PLUGIN_NAME ] = array(
|
| 160 |
'about' => AI1WMLE_PLUGIN_ABOUT,
|
| 161 |
'basename' => AI1WMLE_PLUGIN_BASENAME,
|
| 162 |
'version' => AI1WMLE_VERSION,
|
| 163 |
+
'requires' => '2.22',
|
| 164 |
'short' => AI1WMLE_PLUGIN_SHORT,
|
| 165 |
);
|
| 166 |
}
|
| 167 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 168 |
return $extensions;
|
| 169 |
}
|
| 170 |
}
|
lib/model/class-ai1wm-message.php
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Copyright (C) 2014-2018 ServMask Inc.
|
| 4 |
+
*
|
| 5 |
+
* This program is free software: you can redistribute it and/or modify
|
| 6 |
+
* it under the terms of the GNU General Public License as published by
|
| 7 |
+
* the Free Software Foundation, either version 3 of the License, or
|
| 8 |
+
* (at your option) any later version.
|
| 9 |
+
*
|
| 10 |
+
* This program is distributed in the hope that it will be useful,
|
| 11 |
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 12 |
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 13 |
+
* GNU General Public License for more details.
|
| 14 |
+
*
|
| 15 |
+
* You should have received a copy of the GNU General Public License
|
| 16 |
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
| 17 |
+
*
|
| 18 |
+
* ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
|
| 19 |
+
* ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
|
| 20 |
+
* ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
|
| 21 |
+
* ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
|
| 22 |
+
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
| 23 |
+
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
| 24 |
+
*/
|
| 25 |
+
|
| 26 |
+
class Ai1wm_Message {
|
| 27 |
+
|
| 28 |
+
public static function flash( $type, $message ) {
|
| 29 |
+
if ( ( $messages = get_option( AI1WM_MESSAGES, array() ) ) !== false ) {
|
| 30 |
+
return update_option( AI1WM_MESSAGES, array_merge( $messages, array( $type => $message ) ) );
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
return false;
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
public static function has( $type ) {
|
| 37 |
+
if ( ( $messages = get_option( AI1WM_MESSAGES, array() ) ) ) {
|
| 38 |
+
if ( isset( $messages[ $type ] ) ) {
|
| 39 |
+
return true;
|
| 40 |
+
}
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
return false;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
public static function get( $type ) {
|
| 47 |
+
$message = null;
|
| 48 |
+
if ( ( $messages = get_option( AI1WM_MESSAGES, array() ) ) ) {
|
| 49 |
+
if ( isset( $messages[ $type ] ) && ( $message = $messages[ $type ] ) ) {
|
| 50 |
+
unset( $messages[ $type ] );
|
| 51 |
+
}
|
| 52 |
+
|
| 53 |
+
// Set messages
|
| 54 |
+
update_option( AI1WM_MESSAGES, $messages );
|
| 55 |
+
}
|
| 56 |
+
|
| 57 |
+
return $message;
|
| 58 |
+
}
|
| 59 |
+
}
|
lib/model/class-ai1wm-notification.php
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Copyright (C) 2014-2018 ServMask Inc.
|
| 4 |
+
*
|
| 5 |
+
* This program is free software: you can redistribute it and/or modify
|
| 6 |
+
* it under the terms of the GNU General Public License as published by
|
| 7 |
+
* the Free Software Foundation, either version 3 of the License, or
|
| 8 |
+
* (at your option) any later version.
|
| 9 |
+
*
|
| 10 |
+
* This program is distributed in the hope that it will be useful,
|
| 11 |
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 12 |
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 13 |
+
* GNU General Public License for more details.
|
| 14 |
+
*
|
| 15 |
+
* You should have received a copy of the GNU General Public License
|
| 16 |
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
| 17 |
+
*
|
| 18 |
+
* ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
|
| 19 |
+
* ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
|
| 20 |
+
* ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
|
| 21 |
+
* ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
|
| 22 |
+
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
| 23 |
+
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
| 24 |
+
*/
|
| 25 |
+
|
| 26 |
+
class Ai1wm_Notification {
|
| 27 |
+
|
| 28 |
+
public static function ok( $subject, $message ) {
|
| 29 |
+
// Enable notifications
|
| 30 |
+
if ( ! apply_filters( 'ai1wm_notification_ok_toggle', false ) ) {
|
| 31 |
+
return;
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
// Set email
|
| 35 |
+
if ( ! ( $email = apply_filters( 'ai1wm_notification_ok_email', get_option( 'admin_email', false ) ) ) ) {
|
| 36 |
+
return;
|
| 37 |
+
}
|
| 38 |
+
|
| 39 |
+
// Set subject
|
| 40 |
+
if ( ! ( $subject = apply_filters( 'ai1wm_notification_ok_subject', $subject ) ) ) {
|
| 41 |
+
return;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
// Set message
|
| 45 |
+
if ( ! ( $message = apply_filters( 'ai1wm_notification_ok_message', $message ) ) ) {
|
| 46 |
+
return;
|
| 47 |
+
}
|
| 48 |
+
|
| 49 |
+
// Send email
|
| 50 |
+
if ( ai1wm_is_scheduled_backup() ) {
|
| 51 |
+
wp_mail( $email, $subject, $message, array( 'Content-Type: text/html; charset=UTF-8' ) );
|
| 52 |
+
}
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
public static function error( $subject, $message ) {
|
| 56 |
+
// Enable notifications
|
| 57 |
+
if ( ! apply_filters( 'ai1wm_notification_error_toggle', false ) ) {
|
| 58 |
+
return;
|
| 59 |
+
}
|
| 60 |
+
|
| 61 |
+
// Set email
|
| 62 |
+
if ( ! ( $email = apply_filters( 'ai1wm_notification_error_email', get_option( 'admin_email', false ) ) ) ) {
|
| 63 |
+
return;
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
// Set subject
|
| 67 |
+
if ( ! ( $subject = apply_filters( 'ai1wm_notification_error_subject', $subject ) ) ) {
|
| 68 |
+
return;
|
| 69 |
+
}
|
| 70 |
+
|
| 71 |
+
// Set message
|
| 72 |
+
if ( ! ( $message = apply_filters( 'ai1wm_notification_error_message', $message ) ) ) {
|
| 73 |
+
return;
|
| 74 |
+
}
|
| 75 |
+
|
| 76 |
+
// Send email
|
| 77 |
+
if ( ai1wm_is_scheduled_backup() ) {
|
| 78 |
+
wp_mail( $email, $subject, $message, array( 'Content-Type: text/html; charset=UTF-8' ) );
|
| 79 |
+
}
|
| 80 |
+
}
|
| 81 |
+
}
|
lib/model/class-ai1wm-status.php
CHANGED
|
@@ -25,36 +25,36 @@
|
|
| 25 |
|
| 26 |
class Ai1wm_Status {
|
| 27 |
|
| 28 |
-
public static function error( $
|
| 29 |
-
self::log( array( 'type' => 'error', '
|
| 30 |
}
|
| 31 |
|
| 32 |
-
public static function info( $message
|
| 33 |
-
self::log( array( 'type' => 'info', 'message' => $message
|
| 34 |
}
|
| 35 |
|
| 36 |
-
public static function download( $message
|
| 37 |
-
self::log( array( 'type' => 'download', 'message' => $message
|
| 38 |
}
|
| 39 |
|
| 40 |
-
public static function confirm( $message
|
| 41 |
-
self::log( array( 'type' => 'confirm', 'message' => $message
|
| 42 |
}
|
| 43 |
|
| 44 |
-
public static function done( $
|
| 45 |
-
self::log( array( 'type' => 'done', '
|
| 46 |
}
|
| 47 |
|
| 48 |
-
public static function blogs( $
|
| 49 |
-
self::log( array( 'type' => 'blogs', '
|
| 50 |
}
|
| 51 |
|
| 52 |
-
public static function progress( $percent
|
| 53 |
-
self::log( array( 'type' => 'progress', 'percent' => $percent
|
| 54 |
}
|
| 55 |
|
| 56 |
-
public static function log( $data
|
| 57 |
-
if (
|
| 58 |
update_option( AI1WM_STATUS, $data );
|
| 59 |
}
|
| 60 |
}
|
| 25 |
|
| 26 |
class Ai1wm_Status {
|
| 27 |
|
| 28 |
+
public static function error( $title, $message ) {
|
| 29 |
+
self::log( array( 'type' => 'error', 'title' => $title, 'message' => $message ) );
|
| 30 |
}
|
| 31 |
|
| 32 |
+
public static function info( $message ) {
|
| 33 |
+
self::log( array( 'type' => 'info', 'message' => $message ) );
|
| 34 |
}
|
| 35 |
|
| 36 |
+
public static function download( $message ) {
|
| 37 |
+
self::log( array( 'type' => 'download', 'message' => $message ) );
|
| 38 |
}
|
| 39 |
|
| 40 |
+
public static function confirm( $message ) {
|
| 41 |
+
self::log( array( 'type' => 'confirm', 'message' => $message ) );
|
| 42 |
}
|
| 43 |
|
| 44 |
+
public static function done( $title, $message ) {
|
| 45 |
+
self::log( array( 'type' => 'done', 'title' => $title, 'message' => $message ) );
|
| 46 |
}
|
| 47 |
|
| 48 |
+
public static function blogs( $title, $message ) {
|
| 49 |
+
self::log( array( 'type' => 'blogs', 'title' => $title, 'message' => $message ) );
|
| 50 |
}
|
| 51 |
|
| 52 |
+
public static function progress( $percent ) {
|
| 53 |
+
self::log( array( 'type' => 'progress', 'percent' => $percent ) );
|
| 54 |
}
|
| 55 |
|
| 56 |
+
public static function log( $data ) {
|
| 57 |
+
if ( ! ai1wm_is_scheduled_backup() ) {
|
| 58 |
update_option( AI1WM_STATUS, $data );
|
| 59 |
}
|
| 60 |
}
|
lib/model/export/class-ai1wm-export-compatibility.php
CHANGED
|
@@ -38,27 +38,10 @@ class Ai1wm_Export_Compatibility {
|
|
| 38 |
return $params;
|
| 39 |
}
|
| 40 |
|
| 41 |
-
//
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
// Manual export
|
| 45 |
-
if ( empty( $params['ai1wm_manual_export'] ) ) {
|
| 46 |
-
if ( function_exists( 'wp_mail' ) ) {
|
| 47 |
-
|
| 48 |
-
// Set recipient
|
| 49 |
-
$recipient = get_option( 'admin_email', '' );
|
| 50 |
-
|
| 51 |
-
// Set subject
|
| 52 |
-
$subject = __( 'Unable to backup your site', AI1WM_PLUGIN_NAME );
|
| 53 |
-
|
| 54 |
-
// Set message
|
| 55 |
-
$message = sprintf( __( 'All-in-One WP Migration was unable to backup %s. %s', AI1WM_PLUGIN_NAME ), site_url(), implode( $messages ) );
|
| 56 |
-
|
| 57 |
-
// Send email
|
| 58 |
-
wp_mail( $recipient, $subject, $message );
|
| 59 |
-
}
|
| 60 |
-
}
|
| 61 |
|
| 62 |
-
|
|
|
|
| 63 |
}
|
| 64 |
}
|
| 38 |
return $params;
|
| 39 |
}
|
| 40 |
|
| 41 |
+
// Enable notifications
|
| 42 |
+
add_filter( 'ai1wm_notification_error_toggle', '__return_true', 20 );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
|
| 44 |
+
// Error message
|
| 45 |
+
throw new Ai1wm_Compatibility_Exception( implode( $messages ) );
|
| 46 |
}
|
| 47 |
}
|
lib/model/import/class-ai1wm-import-compatibility.php
CHANGED
|
@@ -38,9 +38,10 @@ class Ai1wm_Import_Compatibility {
|
|
| 38 |
return $params;
|
| 39 |
}
|
| 40 |
|
| 41 |
-
//
|
| 42 |
-
|
| 43 |
|
| 44 |
-
|
|
|
|
| 45 |
}
|
| 46 |
}
|
| 38 |
return $params;
|
| 39 |
}
|
| 40 |
|
| 41 |
+
// Enable notifications
|
| 42 |
+
add_filter( 'ai1wm_notification_error_toggle', '__return_true', 20 );
|
| 43 |
|
| 44 |
+
// Error message
|
| 45 |
+
throw new Ai1wm_Compatibility_Exception( implode( $messages ) );
|
| 46 |
}
|
| 47 |
}
|
lib/model/import/class-ai1wm-import-confirm.php
CHANGED
|
@@ -57,7 +57,7 @@ class Ai1wm_Import_Confirm {
|
|
| 57 |
}
|
| 58 |
|
| 59 |
// Set progress
|
| 60 |
-
Ai1wm_Status::confirm( implode(
|
| 61 |
exit;
|
| 62 |
}
|
| 63 |
}
|
| 57 |
}
|
| 58 |
|
| 59 |
// Set progress
|
| 60 |
+
Ai1wm_Status::confirm( implode( $messages ) );
|
| 61 |
exit;
|
| 62 |
}
|
| 63 |
}
|
lib/model/import/class-ai1wm-import-done.php
CHANGED
|
@@ -170,6 +170,10 @@ class Ai1wm_Import_Done {
|
|
| 170 |
|
| 171 |
// Set progress
|
| 172 |
Ai1wm_Status::done(
|
|
|
|
|
|
|
|
|
|
|
|
|
| 173 |
sprintf(
|
| 174 |
__(
|
| 175 |
'You need to perform two more steps:<br />' .
|
|
@@ -178,10 +182,6 @@ class Ai1wm_Import_Done {
|
|
| 178 |
AI1WM_PLUGIN_NAME
|
| 179 |
),
|
| 180 |
admin_url( 'options-permalink.php#submit' )
|
| 181 |
-
),
|
| 182 |
-
__(
|
| 183 |
-
'Your data has been imported successfully!',
|
| 184 |
-
AI1WM_PLUGIN_NAME
|
| 185 |
)
|
| 186 |
);
|
| 187 |
|
| 170 |
|
| 171 |
// Set progress
|
| 172 |
Ai1wm_Status::done(
|
| 173 |
+
__(
|
| 174 |
+
'Your data has been imported successfully!',
|
| 175 |
+
AI1WM_PLUGIN_NAME
|
| 176 |
+
),
|
| 177 |
sprintf(
|
| 178 |
__(
|
| 179 |
'You need to perform two more steps:<br />' .
|
| 182 |
AI1WM_PLUGIN_NAME
|
| 183 |
),
|
| 184 |
admin_url( 'options-permalink.php#submit' )
|
|
|
|
|
|
|
|
|
|
|
|
|
| 185 |
)
|
| 186 |
);
|
| 187 |
|
lib/vendor/servmask/database/class-ai1wm-database.php
CHANGED
|
@@ -929,13 +929,13 @@ abstract class Ai1wm_Database {
|
|
| 929 |
protected function replace_table_values( $input ) {
|
| 930 |
// Replace base64 encoded values (Visual Composer)
|
| 931 |
if ( $this->get_visual_composer() ) {
|
| 932 |
-
$input = preg_replace_callback( '/\[vc_raw_html\](
|
| 933 |
}
|
| 934 |
|
| 935 |
// Replace serialized values
|
| 936 |
foreach ( $this->get_old_replace_values() as $old_value ) {
|
| 937 |
if ( strpos( $input, $this->escape( $old_value ) ) !== false ) {
|
| 938 |
-
$input = preg_replace_callback( "/'(
|
| 939 |
break;
|
| 940 |
}
|
| 941 |
}
|
| 929 |
protected function replace_table_values( $input ) {
|
| 930 |
// Replace base64 encoded values (Visual Composer)
|
| 931 |
if ( $this->get_visual_composer() ) {
|
| 932 |
+
$input = preg_replace_callback( '/\[vc_raw_html\](.+?)\[\/vc_raw_html\]/S', array( $this, 'replace_base64_values_callback' ), $input );
|
| 933 |
}
|
| 934 |
|
| 935 |
// Replace serialized values
|
| 936 |
foreach ( $this->get_old_replace_values() as $old_value ) {
|
| 937 |
if ( strpos( $input, $this->escape( $old_value ) ) !== false ) {
|
| 938 |
+
$input = preg_replace_callback( "/'(.*?)(?<!\\\\)'/S", array( $this, 'replace_table_values_callback' ), $input );
|
| 939 |
break;
|
| 940 |
}
|
| 941 |
}
|
lib/view/assets/css/backups.min.css
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
@charset "UTF-8";@-webkit-keyframes ai1wm-rotate{0%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}25%{-webkit-transform:rotateZ(-90deg);transform:rotateZ(-90deg)}50%{-webkit-transform:rotateZ(-180deg);transform:rotateZ(-180deg)}75%{-webkit-transform:rotateZ(-270deg);transform:rotateZ(-270deg)}to{-webkit-transform:rotateZ(-360deg);transform:rotateZ(-360deg)}}@keyframes ai1wm-rotate{0%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}25%{-webkit-transform:rotateZ(-90deg);transform:rotateZ(-90deg)}50%{-webkit-transform:rotateZ(-180deg);transform:rotateZ(-180deg)}75%{-webkit-transform:rotateZ(-270deg);transform:rotateZ(-270deg)}to{-webkit-transform:rotateZ(-360deg);transform:rotateZ(-360deg)}}@-webkit-keyframes ai1wm-emphasize{0%,to{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.2);transform:scale(1.2)}}@keyframes ai1wm-emphasize{0%,to{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.2);transform:scale(1.2)}}@-webkit-keyframes ai1wm-fadein{0%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1.5);transform:scale(1.5)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes ai1wm-fadein{0%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1.5);transform:scale(1.5)}to{-webkit-transform:scale(1);transform:scale(1)}}.ai1wm-divider{-ms-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;border:0;margin:0;background-color:transparent;font-size:14px;font-weight:700;text-align:center;text-transform:uppercase;color:rgba(0,0,0,.8);position:relative;top:0%;left:0%;margin:1rem 2.5rem;height:auto;padding:0;line-height:1}.ai1wm-divider:after,.ai1wm-divider:before{position:absolute;content:" ";z-index:3;width:50%;top:50%;height:0%;border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(255,255,255,.8)}.ai1wm-divider:before{left:0%;margin-left:-2.5rem}.ai1wm-divider:after{left:auto;right:0%;margin-right:-2.5rem}[class*=" ai1wm-icon-"],[class^=ai1wm-icon-]{font-family:'servmask';speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ai1wm-icon-file-zip:before{content:"\e60f"}.ai1wm-icon-folder:before{content:"\e60e"}.ai1wm-icon-file:before{content:"\e60b"}.ai1wm-icon-file-content:before{content:"\e60c"}.ai1wm-icon-cloud-upload:before{content:"\e600"}.ai1wm-icon-history:before{content:"\e603"}.ai1wm-icon-notification:before{content:"\e619"}.ai1wm-icon-arrow-down:before{content:"\e604"}.ai1wm-icon-close:before{content:"\e61a"}.ai1wm-icon-wordpress2:before{content:"\e620"}.ai1wm-icon-arrow-right:before{content:"\e605"}.ai1wm-icon-plus2:before{content:"\e607"}.ai1wm-icon-export:before{content:"\e601"}.ai1wm-icon-publish:before{content:"\e602"}.ai1wm-icon-paperplane:before{content:"\e608"}.ai1wm-icon-help:before{content:"\e609"}.ai1wm-icon-chevron-right:before{content:"\e60d"}.ai1wm-icon-dropbox:before{content:"\e606"}.ai1wm-icon-gear:before{content:"\e60a"}.ai1wm-icon-database:before{content:"\e964"}.ai1wm-icon-upload2:before{content:"\e9c6"}.ai1wm-icon-checkmark:before{content:"\ea10"}.ai1wm-icon-checkmark2:before{content:"\ea11"}.ai1wm-icon-enter:before{content:"\ea13"}.ai1wm-icon-exit:before{content:"\ea14"}.ai1wm-icon-amazon:before{content:"\ea87"}.ai1wm-icon-onedrive:before{content:"\eaaf"}.ai1wm-icon-alone{margin:0!important}@media (min-width:855px){.ai1wm-row{margin-right:399px}.ai1wm-row:after,.ai1wm-row:before{content:" ";display:table}.ai1wm-row:after{clear:both}.ai1wm-left{float:left;width:100%}.ai1wm-right{float:right;width:377px;margin-right:-399px}.ai1wm-right .ai1wm-sidebar{width:100%}.ai1wm-right .ai1wm-segment{width:333px;border:1px solid #d6d6d6;border-radius:3px;box-shadow:inset 0 1px 0 0 #fff;color:#333;background-color:#f9f9f9;padding:20px;text-decoration:none;text-shadow:0 1px 0 #fff;background-clip:padding-box}.ai1wm-right .ai1wm-segment h2{margin:22px 0 0;padding:0;font-weight:700;font-size:14px;text-transform:uppercase;text-align:center}.ai1wm-right .ai1wm-feedback-email{width:100%;font-weight:400;font-size:.8rem;height:2.3rem;line-height:2.3rem;border-radius:5px;margin-bottom:4px;padding:0 10px}.ai1wm-right .ai1wm-feedback-message{width:100%;border-radius:3px;font-size:.8rem;padding:6px 10px;resize:none}.ai1wm-right .ai1wm-feedback-terms-segment{font-size:.7rem;line-height:1rem;margin:4px 0 8px}.ai1wm-right .ai1wm-feedback-terms-segment>.ai1wm-feedback-terms{border-radius:3px}}.ai1wm-holder{position:relative;border:1px solid #d6d6d6;border-radius:3px;box-shadow:inset 0 1px 0 0 #fff;padding:20px;background:#f9f9f9}.ai1wm-holder h1{margin:0;padding:0;float:left;font-weight:300;font-size:22px;text-transform:uppercase}.ai1wm-holder h1 i{position:relative;top:2px}@media (max-width:854px){.ai1wm-container{margin-left:10px!important}.ai1wm-right,.ai1wm-row{margin-right:0!important}.ai1wm-right{float:left!important;width:100%!important;margin-top:18px}.ai1wm-right .ai1wm-sidebar{width:auto!important;border:1px solid #d6d6d6;border-radius:3px;box-shadow:inset 0 1px 0 0 #fff;padding:20px;background:#f9f9f9}.ai1wm-right .ai1wm-feedback-email{width:100%;font-weight:400;font-size:.8rem;height:2.3rem;line-height:2.3rem;border-radius:5px;margin-bottom:4px;padding:0 10px}.ai1wm-right .ai1wm-feedback-message{width:100%;border-radius:3px;font-size:.8rem;padding:6px 10px;resize:none}.ai1wm-right .ai1wm-feedback-terms-segment{font-size:.7rem;line-height:1rem;margin:4px 0 8px;border-radius:3px}.ai1wm-right .ai1wm-feedback-terms-segment>.ai1wm-feedback-terms{border-radius:3px}}.ai1wm-container{margin:20px 20px 0 2px}.ai1wm-container:after,.ai1wm-container:before{content:" ";display:table}.ai1wm-container:after{clear:both}.ai1wm-replace-row{width:100%;box-shadow:outset 0 1px 0 0 white;border-radius:3px;color:#333;font-size:11px;font-weight:700;background-color:#f9f9f9;text-decoration:none;text-shadow:0 1px 0 #fff;background-clip:padding-box;margin-bottom:10px}.ai1wm-replace-row .ai1wm-field-inline{float:left;width:100%}.ai1wm-replace-row .ai1wm-field-inline input{width:100%;font-weight:400;font-size:.8rem;padding:0 10px;height:2.3rem;line-height:2.3rem;margin-bottom:4px}.ai1wm-field{margin-bottom:4px}.ai1wm-field input[type=text],.ai1wm-field textarea{width:100%;font-weight:400}.ai1wm-field-set{margin-top:18px}.ai1wm-message{-moz-box-sizing:border-box;background-color:#efefef;border-radius:4px;color:rgba(0,0,0,.6);height:auto;margin:10px 0;min-height:18px;padding:6px 10px;position:relative;border:1px solid;transition:opacity .1s ease 0s,color .1s ease 0s,background .1s ease 0s,box-shadow .1s ease 0s}.ai1wm-message.ai1wm-success-message{background-color:#f2f8f0;color:#119000;font-size:12px}.ai1wm-message.ai1wm-info-message{background-color:#d9edf7;color:#31708f;font-size:11px}.ai1wm-message.ai1wm-error-message{background-color:#f1d7d7;color:#a95252;font-size:12px}.ai1wm-message.ai1wm-red-message{color:#d95c5c;border:2px solid #d95c5c;background-color:transparent}.ai1wm-message.ai1wm-red-message h3{margin:.4em 0;color:#d95c5c}.ai1wm-message p{margin:4px 0;font-size:12px}.ai1wm-message-warning{display:block;font-size:14px;line-height:18px;padding:12px 20px;margin:0 0 22px;background-color:#f9f9f9;border:1px solid #d6d6d6;border-radius:3px;box-shadow:0 1px 0 0 #fff inset;border-left:4px solid #ffba00}.ai1wm-button-group{border:2px solid #27ae60;background-color:transparent;color:#27ae60;border-radius:5px;cursor:pointer;text-transform:uppercase;font-weight:600;transition:background-color .2s ease-out;display:inline-block;text-align:left}.ai1wm-button-group.ai1wm-button-export,.ai1wm-button-group.ai1wm-button-import{box-sizing:content-box}.ai1wm-button-group.ai1wm-button-export.ai1wm-open>.ai1wm-dropdown-menu{height:234px;border-top:1px solid #27ae60}.ai1wm-button-group.ai1wm-button-import.ai1wm-open>.ai1wm-dropdown-menu{height:262px;border-top:1px solid #27ae60}.ai1wm-button-group .ai1wm-button-main{position:relative;padding:6px 50px 6px 25px;box-sizing:content-box}.ai1wm-button-group .ai1wm-dropdown-menu{height:0;overflow:hidden;transition:height .2s cubic-bezier(.19,1,.22,1);border-top:none}.ai1wm-dropdown-menu{list-style:none}.ai1wm-dropdown-menu,.ai1wm-dropdown-menu li{margin:0!important;padding:0}.ai1wm-dropdown-menu li a,.ai1wm-dropdown-menu li a:visited{display:block;margin:10px 0;padding:0 26px;text-decoration:none;color:#27ae60;text-align:left;box-sizing:content-box}.ai1wm-dropdown-menu li a:hover,.ai1wm-dropdown-menu li a:visited:hover{text-decoration:none;color:#111}.ai1mw-lines,.ai1wm-line{display:inline-block;position:absolute}.ai1mw-lines{top:9px;right:20px;width:12px;height:10px}.ai1wm-line{width:100%;height:2px;margin:auto;background:#27ae60;transition:all .2s ease-in-out}.ai1wm-line-first{top:0;left:0}div.ai1wm-open .ai1wm-line-first,div.ai1wm-open .ai1wm-line-third{top:50%}.ai1wm-line-second{top:50%;left:0}.ai1wm-line-third{top:100%;left:0}.ai1wm-button-blue,.ai1wm-button-gray,.ai1wm-button-green,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #95a5a6;background-color:transparent;color:#95a5a6;border-radius:5px;cursor:pointer;padding:5px 25px 5px 26px;text-transform:uppercase;font-weight:600;outline:0;transition:background-color .2s ease-out;text-decoration:none}.ai1wm-button-gray:hover{background-color:#95a5a6;color:#fff}.ai1wm-button-blue,.ai1wm-button-green,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #27ae60;color:#27ae60}.ai1wm-button-green:hover{background-color:#27ae60;color:#fff}.ai1wm-button-blue,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #6eb649;color:#6eb649}.ai1wm-button-green-small:hover{background-color:#6eb649;color:#fff}.ai1wm-button-blue,.ai1wm-button-red{border:2px solid #00aff0;color:#00aff0}.ai1wm-button-blue:hover{background-color:#00aff0;color:#fff}.ai1wm-button-red{border:2px solid #e74c3c;color:#e74c3c}.ai1wm-button-red:hover{background-color:#e74c3c;color:#fff}.ai1wm-button-alone{border-radius:50px!important;padding:5px 8px!important}.ai1wm-button-blue[disabled=disabled],.ai1wm-button-green-small[disabled=disabled],.ai1wm-button-green[disabled=disabled],.ai1wm-button-red[disabled=disabled]{opacity:.6;cursor:default}.ai1wm-button-blue[disabled=disabled]:hover{color:#00aff0}.ai1wm-button-red[disabled=disabled]:hover{color:#e74c3c}.ai1wm-button-green[disabled=disabled]:hover{color:#27ae60}.ai1wm-button-blue[disabled=disabled]:hover,.ai1wm-button-green-small[disabled=disabled]:hover,.ai1wm-button-green[disabled=disabled]:hover,.ai1wm-button-red[disabled=disabled]:hover{background:0 0}.ai1wm-button-blue i,.ai1wm-button-gray i,.ai1wm-button-green i,.ai1wm-button-red i{margin-left:-.5em;margin-right:.2em}.ai1wm-message-close-button{position:absolute;right:10px;top:6px;text-decoration:none;font-size:10px}input[type=radio].ai1wm-flat-radio-button{display:none}input[type=radio].ai1wm-flat-radio-button+a i,input[type=radio].ai1wm-flat-radio-button+label i{vertical-align:middle;float:left;width:25px;height:25px;border-radius:50%;background:0 0;border:2px solid #ccc;content:" ";cursor:pointer;position:relative;box-sizing:content-box}input[type=radio].ai1wm-flat-radio-button:checked+a i,input[type=radio].ai1wm-flat-radio-button:checked+label i{background-color:#d9d9d9;border-color:#6f6f6f}.ai1wm-clear{*zoom:1;clear:both}.ai1wm-clear:after,.ai1wm-clear:before{content:" ";display:table}.ai1wm-clear:after{clear:both}.ai1wm-list-expanded{display:block!important}.ai1wm-field-inline input{border-radius:5px}.ai1wm-container .ai1wm-row label{position:relative;top:-1px}.ai1wm-share-button-container{text-align:center}.ai1wm-share-button-container .ai1wm-share-button{text-decoration:none;margin:10px;font-size:30px}.ai1wm-report-problem{position:relative;float:right}.ai1wm-report-problem-dialog{position:absolute;z-index:999;width:280px;right:0;background-color:#fff;margin:6px 0 0;padding:15px 15px 10px;border:1px solid #d6d6d6;border-radius:3px;box-shadow:0 1px 0 0 #fff inset;display:none}.ai1wm-report-email{width:100%;font-weight:400;font-size:.8rem;height:2.3rem;line-height:2.3rem;border-radius:5px;margin-bottom:4px;padding:0 10px}.ai1wm-report-message{width:100%;border-radius:3px;font-size:.8rem;padding:6px 10px;resize:none}.ai1wm-feedback-cancel:active,.ai1wm-feedback-cancel:link,.ai1wm-feedback-cancel:visited,.ai1wm-report-cancel:active,.ai1wm-report-cancel:link,.ai1wm-report-cancel:visited{float:left;line-height:34px;outline:0;text-decoration:none;color:#e74c3c}.ai1wm-form-submit{float:right}.ai1wm-report-active{display:block}.ai1wm-report-terms-segment{font-size:.7rem;line-height:1rem;margin:4px 0 8px}.ai1wm-report-terms-segment>.ai1wm-report-terms{border-radius:3px}.ai1wm-import-info a,.ai1wm-no-underline{text-decoration:none}.ai1wm-top-negative-four{top:-4px}.ai1wm-feedback-form{display:none}.ai1wm-feedback-types{margin:0;padding:0;list-style:none}.ai1wm-feedback-types li{margin:14px 0;padding:0}.ai1wm-feedback-types>li>a>span,.ai1wm-feedback-types>li>label>span{display:inline-block;padding:5px 0 6px 8px}.ai1wm-feedback-types>li>a{height:29px;outline:0;color:#333;text-deciration:none}.ai1wm-loader{display:inline-block;width:128px;height:128px;position:relative;-webkit-animation:ai1wm-rotate 1.5s infinite linear;animation:ai1wm-rotate 1.5s infinite linear;background:url(../img/logo-128x128.png);background-repeat:no-repeat;background-position:center center}.ai1wm-hide{display:none}.ai1wm-label{border:1px solid #5cb85c;background-color:transparent;color:#5cb85c;cursor:pointer;text-transform:uppercase;font-weight:600;outline:0;transition:background-color .2s ease-out;padding:.2em .6em;font-size:.8em;border-radius:5px}.ai1wm-label:hover{background-color:#5cb85c;color:#fff}.ai1wm-dialog-message{text-align:left;line-height:1.5em}.ai1wm-overlay{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);z-index:100001}.ai1wm-modal-container{position:fixed;display:none;top:50%;left:50%;z-index:100002;width:480px;height:auto;padding:16px;-webkit-transform:translate(-240px,-94px);transform:translate(-240px,-94px);border:1px solid #fff;box-shadow:0 2px 6px #292929;border-radius:6px;background:#f6f6f6;box-sizing:border-box;text-align:center}.ai1wm-modal-container section{display:block;min-height:102px}.ai1wm-modal-container section h1{margin:0;padding:0}.ai1wm-modal-container section h1 .ai1wm-title-green{color:#27ae60;font-size:20px}.ai1wm-modal-container section h1 .ai1wm-title-red{color:#e74c3c;font-size:20px}.ai1wm-modal-container section h1 .ai1wm-title-grey{color:gray;font-size:20px}.ai1wm-modal-container section h1 .ai1wm-loader{width:32px;height:32px;background:url(../img/logo-32x32.png)}.ai1wm-modal-container section h1 .ai1wm-icon-notification{font-size:1.2em;color:#e74c3c}.ai1wm-modal-container section p{margin:0;padding:12px 0}.ai1wm-modal-container section p .ai1wm-modal-sites p{padding:4px 10px;text-align:left}.ai1wm-modal-container section p .ai1wm-modal-sites input,.ai1wm-modal-container section p .ai1wm-modal-sites select{padding:0 6px;width:100%;border-radius:3px;height:30px;line-height:30px}.ai1wm-modal-container section p .ai1wm-modal-subtitle-green{color:#27ae60}.ai1wm-modal-container section p .ai1wm-modal-subtitle-red{color:#e74c3c}.ai1wm-modal-container section p .ai1wm-modal-subdescription{display:block;text-align:left}.ai1wm-modal-container section p a.ai1wm-button-green{display:inline-block;position:relative;top:26px}.ai1wm-modal-container section p a.ai1wm-emphasize{-webkit-animation:ai1wm-emphasize 1s infinite;animation:ai1wm-emphasize 1s infinite}.ai1wm-modal-container section p em{display:block;color:#34495e;font-style:normal}.ai1wm-modal-container section p.ai1wm-import-modal-content{text-align:left}.ai1wm-modal-container .ai1wm-import-modal-actions{border-top:1px solid #ccc;padding-top:1em;text-align:right}.ai1wm-modal-container .ai1wm-import-modal-actions .ai1wm-button-gray{margin-right:1em}.ai1wm-modal-container .ai1wm-import-modal-notice{border-top:1px solid #ccc}.ai1wm-modal-container .ai1wm-import-modal-notice p{font-weight:700;margin:0;padding-top:16px;text-align:center}.ai1wm-growl-info{position:fixed;z-index:200000;top:0;margin-top:16px;right:16px;width:200px;padding:16px;background:#f1c40f;border:1px solid #e67e22;border-radius:5px;color:#111}#ai1wm-backup-progress,#ai1wm-backup-progress-bar{background-color:#dfdfdf;height:20px;width:350px;border-radius:15px}#ai1wm-backup-progress-bar{background-color:#00aff0;line-height:20px;color:#fff;width:0;text-align:center}.ai1wm-backups{width:100%;margin:1em 0 2em;padding:0;border-collapse:collapse}.ai1wm-backups .ai1wm-column-name{text-align:left}.ai1wm-backups .ai1wm-column-info{text-align:right}.ai1wm-backups .ai1wm-column-date,.ai1wm-backups .ai1wm-column-size{text-align:center}.ai1wm-backups .ai1wm-column-actions{text-align:right}.ai1wm-backups thead th{padding:4px 6px;text-align:left;font-size:1.2em}.ai1wm-backups tbody tr:first-child{border-top:1px solid #ccc}.ai1wm-backups tbody tr{border-bottom:1px solid #ccc}.ai1wm-backups tbody tr:hover{background:rgba(0,0,0,.1)}.ai1wm-backups tbody td{padding:8px 6px;box-sizing:border-box;line-height:24px}.ai1wm-backups tbody td span{font-weight:700}.ai1wm-backups tbody td.ai1wm-backup-actions{text-align:right;width:250px}.ai1wm-backups tbody td.ai1wm-backup-actions a{margin-left:4px}.ai1wm-backups tbody td.ai1wm-backup-actions span{transition:width 2s cubic-bezier(.19,1,.22,1);display:inline-block;width:0;text-align:center;white-space:nowrap;visibility:hidden}.ai1wm-backups tbody td.ai1wm-backup-actions .ai1wm-button-on span{width:80px;visibility:visible}.ai1wm-backups-empty{line-height:2em}.ai1wm-import-info{display:inline-block;font-size:12px;font-weight:700;margin-top:16px}
|
| 1 |
+
@charset "UTF-8";@-webkit-keyframes ai1wm-rotate{0%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}25%{-webkit-transform:rotateZ(-90deg);transform:rotateZ(-90deg)}50%{-webkit-transform:rotateZ(-180deg);transform:rotateZ(-180deg)}75%{-webkit-transform:rotateZ(-270deg);transform:rotateZ(-270deg)}to{-webkit-transform:rotateZ(-360deg);transform:rotateZ(-360deg)}}@keyframes ai1wm-rotate{0%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}25%{-webkit-transform:rotateZ(-90deg);transform:rotateZ(-90deg)}50%{-webkit-transform:rotateZ(-180deg);transform:rotateZ(-180deg)}75%{-webkit-transform:rotateZ(-270deg);transform:rotateZ(-270deg)}to{-webkit-transform:rotateZ(-360deg);transform:rotateZ(-360deg)}}@-webkit-keyframes ai1wm-emphasize{0%,to{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.2);transform:scale(1.2)}}@keyframes ai1wm-emphasize{0%,to{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.2);transform:scale(1.2)}}@-webkit-keyframes ai1wm-fadein{0%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1.5);transform:scale(1.5)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes ai1wm-fadein{0%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1.5);transform:scale(1.5)}to{-webkit-transform:scale(1);transform:scale(1)}}.ai1wm-divider{-ms-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;border:0;margin:0;background-color:transparent;font-size:14px;font-weight:700;text-align:center;text-transform:uppercase;color:rgba(0,0,0,.8);position:relative;top:0%;left:0%;margin:1rem 2.5rem;height:auto;padding:0;line-height:1}.ai1wm-divider:after,.ai1wm-divider:before{position:absolute;content:" ";z-index:3;width:50%;top:50%;height:0%;border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(255,255,255,.8)}.ai1wm-divider:before{left:0%;margin-left:-2.5rem}.ai1wm-divider:after{left:auto;right:0%;margin-right:-2.5rem}[class*=" ai1wm-icon-"],[class^=ai1wm-icon-]{font-family:'servmask';speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ai1wm-icon-file-zip:before{content:"\e60f"}.ai1wm-icon-folder:before{content:"\e60e"}.ai1wm-icon-file:before{content:"\e60b"}.ai1wm-icon-file-content:before{content:"\e60c"}.ai1wm-icon-cloud-upload:before{content:"\e600"}.ai1wm-icon-history:before{content:"\e603"}.ai1wm-icon-notification:before{content:"\e619"}.ai1wm-icon-arrow-down:before{content:"\e604"}.ai1wm-icon-close:before{content:"\e61a"}.ai1wm-icon-wordpress2:before{content:"\e620"}.ai1wm-icon-arrow-right:before{content:"\e605"}.ai1wm-icon-plus2:before{content:"\e607"}.ai1wm-icon-export:before{content:"\e601"}.ai1wm-icon-publish:before{content:"\e602"}.ai1wm-icon-paperplane:before{content:"\e608"}.ai1wm-icon-help:before{content:"\e609"}.ai1wm-icon-chevron-right:before{content:"\e60d"}.ai1wm-icon-dropbox:before{content:"\e606"}.ai1wm-icon-gear:before{content:"\e60a"}.ai1wm-icon-database:before{content:"\e964"}.ai1wm-icon-upload2:before{content:"\e9c6"}.ai1wm-icon-checkmark:before{content:"\ea10"}.ai1wm-icon-checkmark2:before{content:"\ea11"}.ai1wm-icon-enter:before{content:"\ea13"}.ai1wm-icon-exit:before{content:"\ea14"}.ai1wm-icon-amazon:before{content:"\ea87"}.ai1wm-icon-onedrive:before{content:"\eaaf"}.ai1wm-icon-alone{margin:0!important}@media (min-width:855px){.ai1wm-row{margin-right:399px}.ai1wm-row:after,.ai1wm-row:before{content:" ";display:table}.ai1wm-row:after{clear:both}.ai1wm-left{float:left;width:100%}.ai1wm-right{float:right;width:377px;margin-right:-399px}.ai1wm-right .ai1wm-sidebar{width:100%}.ai1wm-right .ai1wm-segment{width:333px;border:1px solid #d6d6d6;border-radius:3px;box-shadow:inset 0 1px 0 0 #fff;color:#333;background-color:#f9f9f9;padding:20px;text-decoration:none;text-shadow:0 1px 0 #fff;background-clip:padding-box}.ai1wm-right .ai1wm-segment h2{margin:22px 0 0;padding:0;font-weight:700;font-size:14px;text-transform:uppercase;text-align:center}.ai1wm-right .ai1wm-feedback-email{width:100%;font-weight:400;font-size:.8rem;height:2.3rem;line-height:2.3rem;border-radius:5px;margin-bottom:4px;padding:0 10px}.ai1wm-right .ai1wm-feedback-message{width:100%;border-radius:3px;font-size:.8rem;padding:6px 10px;resize:none}.ai1wm-right .ai1wm-feedback-terms-segment{font-size:.7rem;line-height:1rem;margin:4px 0 8px}.ai1wm-right .ai1wm-feedback-terms-segment>.ai1wm-feedback-terms{border-radius:3px}}.ai1wm-holder{position:relative;border:1px solid #d6d6d6;border-radius:3px;box-shadow:inset 0 1px 0 0 #fff;padding:20px;background:#f9f9f9}.ai1wm-holder h1{margin:0;padding:0;float:left;font-weight:300;font-size:22px;text-transform:uppercase}.ai1wm-holder h1 i{position:relative;top:2px}@media (max-width:854px){.ai1wm-container{margin-left:10px!important}.ai1wm-right,.ai1wm-row{margin-right:0!important}.ai1wm-right{float:left!important;width:100%!important;margin-top:18px}.ai1wm-right .ai1wm-sidebar{width:auto!important;border:1px solid #d6d6d6;border-radius:3px;box-shadow:inset 0 1px 0 0 #fff;padding:20px;background:#f9f9f9}.ai1wm-right .ai1wm-feedback-email{width:100%;font-weight:400;font-size:.8rem;height:2.3rem;line-height:2.3rem;border-radius:5px;margin-bottom:4px;padding:0 10px}.ai1wm-right .ai1wm-feedback-message{width:100%;border-radius:3px;font-size:.8rem;padding:6px 10px;resize:none}.ai1wm-right .ai1wm-feedback-terms-segment{font-size:.7rem;line-height:1rem;margin:4px 0 8px;border-radius:3px}.ai1wm-right .ai1wm-feedback-terms-segment>.ai1wm-feedback-terms{border-radius:3px}}.ai1wm-container{margin:20px 20px 0 2px}.ai1wm-container:after,.ai1wm-container:before{content:" ";display:table}.ai1wm-container:after{clear:both}.ai1wm-replace-row{width:100%;box-shadow:outset 0 1px 0 0 white;border-radius:3px;color:#333;font-size:11px;font-weight:700;background-color:#f9f9f9;text-decoration:none;text-shadow:0 1px 0 #fff;background-clip:padding-box;margin-bottom:10px}.ai1wm-replace-row .ai1wm-field-inline{float:left;width:100%}.ai1wm-replace-row .ai1wm-field-inline input{width:100%;font-weight:400;font-size:.8rem;padding:0 10px;height:2.3rem;line-height:2.3rem;margin-bottom:4px}.ai1wm-field{margin-bottom:4px}.ai1wm-field input[type=text],.ai1wm-field textarea{width:100%;font-weight:400}.ai1wm-field-set{margin-top:18px}.ai1wm-message{-moz-box-sizing:border-box;background-color:#efefef;border-radius:4px;color:rgba(0,0,0,.6);height:auto;margin:10px 0;min-height:18px;padding:6px 10px;position:relative;border:1px solid;transition:opacity .1s ease 0s,color .1s ease 0s,background .1s ease 0s,box-shadow .1s ease 0s}.ai1wm-message.ai1wm-success-message{background-color:#f2f8f0;color:#119000;font-size:12px}.ai1wm-message.ai1wm-info-message{background-color:#d9edf7;color:#31708f;font-size:11px}.ai1wm-message.ai1wm-error-message{background-color:#f1d7d7;color:#a95252;font-size:12px}.ai1wm-message.ai1wm-red-message{color:#d95c5c;border:2px solid #d95c5c;background-color:transparent}.ai1wm-message.ai1wm-red-message h3{margin:.4em 0;color:#d95c5c}.ai1wm-message p{margin:4px 0;font-size:12px}.ai1wm-message-warning{display:block;font-size:14px;line-height:18px;padding:12px 20px;margin:0 0 22px;background-color:#f9f9f9;border:1px solid #d6d6d6;border-radius:3px;box-shadow:0 1px 0 0 #fff inset;border-left:4px solid #ffba00}.ai1wm-button-group{border:2px solid #27ae60;background-color:transparent;color:#27ae60;border-radius:5px;cursor:pointer;text-transform:uppercase;font-weight:600;transition:background-color .2s ease-out;display:inline-block;text-align:left}.ai1wm-button-group.ai1wm-button-export,.ai1wm-button-group.ai1wm-button-import{box-sizing:content-box}.ai1wm-button-group.ai1wm-button-export.ai1wm-open>.ai1wm-dropdown-menu{height:260px;border-top:1px solid #27ae60}.ai1wm-button-group.ai1wm-button-import.ai1wm-open>.ai1wm-dropdown-menu{height:288px;border-top:1px solid #27ae60}.ai1wm-button-group .ai1wm-button-main{position:relative;padding:6px 50px 6px 25px;box-sizing:content-box}.ai1wm-button-group .ai1wm-dropdown-menu{height:0;overflow:hidden;transition:height .2s cubic-bezier(.19,1,.22,1);border-top:none}.ai1wm-dropdown-menu{list-style:none}.ai1wm-dropdown-menu,.ai1wm-dropdown-menu li{margin:0!important;padding:0}.ai1wm-dropdown-menu li a,.ai1wm-dropdown-menu li a:visited{display:block;margin:10px 0;padding:0 26px;text-decoration:none;color:#27ae60;text-align:left;box-sizing:content-box}.ai1wm-dropdown-menu li a:hover,.ai1wm-dropdown-menu li a:visited:hover{text-decoration:none;color:#111}.ai1mw-lines,.ai1wm-line{display:inline-block;position:absolute}.ai1mw-lines{top:9px;right:20px;width:12px;height:10px}.ai1wm-line{width:100%;height:2px;margin:auto;background:#27ae60;transition:all .2s ease-in-out}.ai1wm-line-first{top:0;left:0}div.ai1wm-open .ai1wm-line-first,div.ai1wm-open .ai1wm-line-third{top:50%}.ai1wm-line-second{top:50%;left:0}.ai1wm-line-third{top:100%;left:0}.ai1wm-button-blue,.ai1wm-button-gray,.ai1wm-button-green,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #95a5a6;background-color:transparent;color:#95a5a6;border-radius:5px;cursor:pointer;padding:5px 25px 5px 26px;text-transform:uppercase;font-weight:600;outline:0;transition:background-color .2s ease-out;text-decoration:none}.ai1wm-button-gray:hover{background-color:#95a5a6;color:#fff}.ai1wm-button-blue,.ai1wm-button-green,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #27ae60;color:#27ae60}.ai1wm-button-green:hover{background-color:#27ae60;color:#fff}.ai1wm-button-blue,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #6eb649;color:#6eb649}.ai1wm-button-green-small:hover{background-color:#6eb649;color:#fff}.ai1wm-button-blue,.ai1wm-button-red{border:2px solid #00aff0;color:#00aff0}.ai1wm-button-blue:hover{background-color:#00aff0;color:#fff}.ai1wm-button-red{border:2px solid #e74c3c;color:#e74c3c}.ai1wm-button-red:hover{background-color:#e74c3c;color:#fff}.ai1wm-button-alone{border-radius:50px!important;padding:5px 8px!important}.ai1wm-button-blue[disabled=disabled],.ai1wm-button-green-small[disabled=disabled],.ai1wm-button-green[disabled=disabled],.ai1wm-button-red[disabled=disabled]{opacity:.6;cursor:default}.ai1wm-button-blue[disabled=disabled]:hover{color:#00aff0}.ai1wm-button-red[disabled=disabled]:hover{color:#e74c3c}.ai1wm-button-green[disabled=disabled]:hover{color:#27ae60}.ai1wm-button-blue[disabled=disabled]:hover,.ai1wm-button-green-small[disabled=disabled]:hover,.ai1wm-button-green[disabled=disabled]:hover,.ai1wm-button-red[disabled=disabled]:hover{background:0 0}.ai1wm-button-blue i,.ai1wm-button-gray i,.ai1wm-button-green i,.ai1wm-button-red i{margin-left:-.5em;margin-right:.2em}.ai1wm-message-close-button{position:absolute;right:10px;top:6px;text-decoration:none;font-size:10px}input[type=radio].ai1wm-flat-radio-button{display:none}input[type=radio].ai1wm-flat-radio-button+a i,input[type=radio].ai1wm-flat-radio-button+label i{vertical-align:middle;float:left;width:25px;height:25px;border-radius:50%;background:0 0;border:2px solid #ccc;content:" ";cursor:pointer;position:relative;box-sizing:content-box}input[type=radio].ai1wm-flat-radio-button:checked+a i,input[type=radio].ai1wm-flat-radio-button:checked+label i{background-color:#d9d9d9;border-color:#6f6f6f}.ai1wm-clear{*zoom:1;clear:both}.ai1wm-clear:after,.ai1wm-clear:before{content:" ";display:table}.ai1wm-clear:after{clear:both}.ai1wm-list-expanded{display:block!important}.ai1wm-field-inline input{border-radius:5px}.ai1wm-container .ai1wm-row label{position:relative;top:-1px}.ai1wm-share-button-container{text-align:center}.ai1wm-share-button-container .ai1wm-share-button{text-decoration:none;margin:10px;font-size:30px}.ai1wm-report-problem{position:relative;float:right}.ai1wm-report-problem-dialog{position:absolute;z-index:999;width:280px;right:0;background-color:#fff;margin:6px 0 0;padding:15px 15px 10px;border:1px solid #d6d6d6;border-radius:3px;box-shadow:0 1px 0 0 #fff inset;display:none}.ai1wm-report-email{width:100%;font-weight:400;font-size:.8rem;height:2.3rem;line-height:2.3rem;border-radius:5px;margin-bottom:4px;padding:0 10px}.ai1wm-report-message{width:100%;border-radius:3px;font-size:.8rem;padding:6px 10px;resize:none}.ai1wm-feedback-cancel:active,.ai1wm-feedback-cancel:link,.ai1wm-feedback-cancel:visited,.ai1wm-report-cancel:active,.ai1wm-report-cancel:link,.ai1wm-report-cancel:visited{float:left;line-height:34px;outline:0;text-decoration:none;color:#e74c3c}.ai1wm-form-submit{float:right}.ai1wm-report-active{display:block}.ai1wm-report-terms-segment{font-size:.7rem;line-height:1rem;margin:4px 0 8px}.ai1wm-report-terms-segment>.ai1wm-report-terms{border-radius:3px}.ai1wm-import-info a,.ai1wm-no-underline{text-decoration:none}.ai1wm-top-negative-four{top:-4px}.ai1wm-feedback-form{display:none}.ai1wm-feedback-types{margin:0;padding:0;list-style:none}.ai1wm-feedback-types li{margin:14px 0;padding:0}.ai1wm-feedback-types>li>a>span,.ai1wm-feedback-types>li>label>span{display:inline-block;padding:5px 0 6px 8px}.ai1wm-feedback-types>li>a{height:29px;outline:0;color:#333;text-deciration:none}.ai1wm-loader{display:inline-block;width:128px;height:128px;position:relative;-webkit-animation:ai1wm-rotate 1.5s infinite linear;animation:ai1wm-rotate 1.5s infinite linear;background:url(../img/logo-128x128.png);background-repeat:no-repeat;background-position:center center}.ai1wm-hide{display:none}.ai1wm-label{border:1px solid #5cb85c;background-color:transparent;color:#5cb85c;cursor:pointer;text-transform:uppercase;font-weight:600;outline:0;transition:background-color .2s ease-out;padding:.2em .6em;font-size:.8em;border-radius:5px}.ai1wm-label:hover{background-color:#5cb85c;color:#fff}.ai1wm-dialog-message{text-align:left;line-height:1.5em}.ai1wm-overlay{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);z-index:100001}.ai1wm-modal-container{position:fixed;display:none;top:50%;left:50%;z-index:100002;width:480px;height:auto;padding:16px;-webkit-transform:translate(-240px,-94px);transform:translate(-240px,-94px);border:1px solid #fff;box-shadow:0 2px 6px #292929;border-radius:6px;background:#f6f6f6;box-sizing:border-box;text-align:center}.ai1wm-modal-container section{display:block;min-height:102px}.ai1wm-modal-container section h1{margin:0;padding:0}.ai1wm-modal-container section h1 .ai1wm-title-green{color:#27ae60;font-size:20px}.ai1wm-modal-container section h1 .ai1wm-title-red{color:#e74c3c;font-size:20px}.ai1wm-modal-container section h1 .ai1wm-title-grey{color:gray;font-size:20px}.ai1wm-modal-container section h1 .ai1wm-loader{width:32px;height:32px;background:url(../img/logo-32x32.png)}.ai1wm-modal-container section h1 .ai1wm-icon-notification{font-size:1.2em;color:#e74c3c}.ai1wm-modal-container section p{margin:0;padding:12px 0}.ai1wm-modal-container section p .ai1wm-modal-sites p{padding:4px 10px;text-align:left}.ai1wm-modal-container section p .ai1wm-modal-sites input,.ai1wm-modal-container section p .ai1wm-modal-sites select{padding:0 6px;width:100%;border-radius:3px;height:30px;line-height:30px}.ai1wm-modal-container section p .ai1wm-modal-subtitle-green{color:#27ae60}.ai1wm-modal-container section p .ai1wm-modal-subtitle-red{color:#e74c3c}.ai1wm-modal-container section p .ai1wm-modal-subdescription{display:block;text-align:left}.ai1wm-modal-container section p a.ai1wm-button-green{display:inline-block;position:relative;top:26px}.ai1wm-modal-container section p a.ai1wm-emphasize{-webkit-animation:ai1wm-emphasize 1s infinite;animation:ai1wm-emphasize 1s infinite}.ai1wm-modal-container section p em{display:block;color:#34495e;font-style:normal}.ai1wm-modal-container section p.ai1wm-import-modal-content{text-align:left}.ai1wm-modal-container .ai1wm-import-modal-actions{border-top:1px solid #ccc;padding-top:1em;text-align:right}.ai1wm-modal-container .ai1wm-import-modal-actions .ai1wm-button-gray{margin-right:1em}.ai1wm-modal-container .ai1wm-import-modal-notice{border-top:1px solid #ccc}.ai1wm-modal-container .ai1wm-import-modal-notice p{font-weight:700;margin:0;padding-top:16px;text-align:center}.ai1wm-growl-info{position:fixed;z-index:200000;top:0;margin-top:16px;right:16px;width:200px;padding:16px;background:#f1c40f;border:1px solid #e67e22;border-radius:5px;color:#111}#ai1wm-backup-progress,#ai1wm-backup-progress-bar{background-color:#dfdfdf;height:20px;width:350px;border-radius:15px}#ai1wm-backup-progress-bar{background-color:#00aff0;line-height:20px;color:#fff;width:0;text-align:center}.ai1wm-backups{width:100%;margin:1em 0 2em;padding:0;border-collapse:collapse}.ai1wm-backups .ai1wm-column-name{text-align:left}.ai1wm-backups .ai1wm-column-info{text-align:right}.ai1wm-backups .ai1wm-column-date,.ai1wm-backups .ai1wm-column-size{text-align:center}.ai1wm-backups .ai1wm-column-actions{text-align:right}.ai1wm-backups thead th{padding:4px 6px;text-align:left;font-size:1.2em}.ai1wm-backups tbody tr:first-child{border-top:1px solid #ccc}.ai1wm-backups tbody tr{border-bottom:1px solid #ccc}.ai1wm-backups tbody tr:hover{background:rgba(0,0,0,.1)}.ai1wm-backups tbody td{padding:8px 6px;box-sizing:border-box;line-height:24px}.ai1wm-backups tbody td span{font-weight:700}.ai1wm-backups tbody td.ai1wm-backup-actions{text-align:right;width:250px}.ai1wm-backups tbody td.ai1wm-backup-actions a{margin-left:4px}.ai1wm-backups tbody td.ai1wm-backup-actions span{transition:width 2s cubic-bezier(.19,1,.22,1);display:inline-block;width:0;text-align:center;white-space:nowrap;visibility:hidden}.ai1wm-backups tbody td.ai1wm-backup-actions .ai1wm-button-on span{width:80px;visibility:visible}.ai1wm-backups-empty{line-height:2em}.ai1wm-import-info{display:inline-block;font-size:12px;font-weight:700;margin-top:16px}
|
lib/view/assets/css/export.min.css
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
@charset "UTF-8";@-webkit-keyframes ai1wm-rotate{0%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}25%{-webkit-transform:rotateZ(-90deg);transform:rotateZ(-90deg)}50%{-webkit-transform:rotateZ(-180deg);transform:rotateZ(-180deg)}75%{-webkit-transform:rotateZ(-270deg);transform:rotateZ(-270deg)}to{-webkit-transform:rotateZ(-360deg);transform:rotateZ(-360deg)}}@-webkit-keyframes ai1wm-emphasize{0%,to{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.2);transform:scale(1.2)}}@-webkit-keyframes ai1wm-fadein{0%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1.5);transform:scale(1.5)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes ai1wm-rotate{0%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}25%{-webkit-transform:rotateZ(-90deg);transform:rotateZ(-90deg)}50%{-webkit-transform:rotateZ(-180deg);transform:rotateZ(-180deg)}75%{-webkit-transform:rotateZ(-270deg);transform:rotateZ(-270deg)}to{-webkit-transform:rotateZ(-360deg);transform:rotateZ(-360deg)}}@keyframes ai1wm-emphasize{0%,to{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.2);transform:scale(1.2)}}@keyframes ai1wm-fadein{0%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1.5);transform:scale(1.5)}to{-webkit-transform:scale(1);transform:scale(1)}}.ai1wm-divider{-ms-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;border:0;margin:0;background-color:transparent;font-size:14px;font-weight:700;text-align:center;text-transform:uppercase;color:rgba(0,0,0,.8);position:relative;top:0%;left:0%;margin:1rem 2.5rem;height:auto;padding:0;line-height:1}.ai1wm-divider:after,.ai1wm-divider:before{position:absolute;content:" ";z-index:3;width:50%;top:50%;height:0%;border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(255,255,255,.8)}.ai1wm-divider:before{left:0%;margin-left:-2.5rem}.ai1wm-divider:after{left:auto;right:0%;margin-right:-2.5rem}[class*=" ai1wm-icon-"],[class^=ai1wm-icon-]{font-family:'servmask';speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ai1wm-icon-file-zip:before{content:"\e60f"}.ai1wm-icon-folder:before{content:"\e60e"}.ai1wm-icon-file:before{content:"\e60b"}.ai1wm-icon-file-content:before{content:"\e60c"}.ai1wm-icon-cloud-upload:before{content:"\e600"}.ai1wm-icon-history:before{content:"\e603"}.ai1wm-icon-notification:before{content:"\e619"}.ai1wm-icon-arrow-down:before{content:"\e604"}.ai1wm-icon-close:before{content:"\e61a"}.ai1wm-icon-wordpress2:before{content:"\e620"}.ai1wm-icon-arrow-right:before{content:"\e605"}.ai1wm-icon-plus2:before{content:"\e607"}.ai1wm-icon-export:before{content:"\e601"}.ai1wm-icon-publish:before{content:"\e602"}.ai1wm-icon-paperplane:before{content:"\e608"}.ai1wm-icon-help:before{content:"\e609"}.ai1wm-icon-chevron-right:before{content:"\e60d"}.ai1wm-icon-dropbox:before{content:"\e606"}.ai1wm-icon-gear:before{content:"\e60a"}.ai1wm-icon-database:before{content:"\e964"}.ai1wm-icon-upload2:before{content:"\e9c6"}.ai1wm-icon-checkmark:before{content:"\ea10"}.ai1wm-icon-checkmark2:before{content:"\ea11"}.ai1wm-icon-enter:before{content:"\ea13"}.ai1wm-icon-exit:before{content:"\ea14"}.ai1wm-icon-amazon:before{content:"\ea87"}.ai1wm-icon-onedrive:before{content:"\eaaf"}.ai1wm-icon-alone{margin:0!important}@media (min-width:855px){.ai1wm-row{margin-right:399px}.ai1wm-row:after,.ai1wm-row:before{content:" ";display:table}.ai1wm-row:after{clear:both}.ai1wm-left{float:left;width:100%}.ai1wm-right{float:right;width:377px;margin-right:-399px}.ai1wm-right .ai1wm-sidebar{width:100%}.ai1wm-right .ai1wm-segment{width:333px;border:1px solid #d6d6d6;border-radius:3px;box-shadow:inset 0 1px 0 0 #fff;color:#333;background-color:#f9f9f9;padding:20px;text-decoration:none;text-shadow:0 1px 0 #fff;background-clip:padding-box}.ai1wm-right .ai1wm-segment h2{margin:22px 0 0;padding:0;font-weight:700;font-size:14px;text-transform:uppercase;text-align:center}.ai1wm-right .ai1wm-feedback-email{width:100%;font-weight:400;font-size:.8rem;height:2.3rem;line-height:2.3rem;border-radius:5px;margin-bottom:4px;padding:0 10px}.ai1wm-right .ai1wm-feedback-message{width:100%;border-radius:3px;font-size:.8rem;padding:6px 10px;resize:none}.ai1wm-right .ai1wm-feedback-terms-segment{font-size:.7rem;line-height:1rem;margin:4px 0 8px}.ai1wm-right .ai1wm-feedback-terms-segment>.ai1wm-feedback-terms{border-radius:3px}}.ai1wm-holder{position:relative;border:1px solid #d6d6d6;border-radius:3px;box-shadow:inset 0 1px 0 0 #fff;padding:20px;background:#f9f9f9}.ai1wm-holder h1{margin:0;padding:0;float:left;font-weight:300;font-size:22px;text-transform:uppercase}.ai1wm-holder h1 i{position:relative;top:2px}@media (max-width:854px){.ai1wm-container{margin-left:10px!important}.ai1wm-right,.ai1wm-row{margin-right:0!important}.ai1wm-right{float:left!important;width:100%!important;margin-top:18px}.ai1wm-right .ai1wm-sidebar{width:auto!important;border:1px solid #d6d6d6;border-radius:3px;box-shadow:inset 0 1px 0 0 #fff;padding:20px;background:#f9f9f9}.ai1wm-right .ai1wm-feedback-email{width:100%;font-weight:400;font-size:.8rem;height:2.3rem;line-height:2.3rem;border-radius:5px;margin-bottom:4px;padding:0 10px}.ai1wm-right .ai1wm-feedback-message{width:100%;border-radius:3px;font-size:.8rem;padding:6px 10px;resize:none}.ai1wm-right .ai1wm-feedback-terms-segment{font-size:.7rem;line-height:1rem;margin:4px 0 8px;border-radius:3px}.ai1wm-right .ai1wm-feedback-terms-segment>.ai1wm-feedback-terms{border-radius:3px}}.ai1wm-container{margin:20px 20px 0 2px}.ai1wm-container:after,.ai1wm-container:before{content:" ";display:table}.ai1wm-container:after{clear:both}.ai1wm-replace-row{width:100%;box-shadow:outset 0 1px 0 0 white;border-radius:3px;color:#333;font-size:11px;font-weight:700;background-color:#f9f9f9;text-decoration:none;text-shadow:0 1px 0 #fff;background-clip:padding-box;margin-bottom:10px}.ai1wm-replace-row .ai1wm-field-inline{float:left;width:100%}.ai1wm-replace-row .ai1wm-field-inline input{width:100%;font-weight:400;font-size:.8rem;padding:0 10px;height:2.3rem;line-height:2.3rem;margin-bottom:4px}.ai1wm-field{margin-bottom:4px}.ai1wm-field input[type=text],.ai1wm-field textarea{width:100%;font-weight:400}.ai1wm-field-set{margin-top:18px}.ai1wm-message{-moz-box-sizing:border-box;background-color:#efefef;border-radius:4px;color:rgba(0,0,0,.6);height:auto;margin:10px 0;min-height:18px;padding:6px 10px;position:relative;border:1px solid;transition:opacity .1s ease 0s,color .1s ease 0s,background .1s ease 0s,box-shadow .1s ease 0s}.ai1wm-message.ai1wm-success-message{background-color:#f2f8f0;color:#119000;font-size:12px}.ai1wm-message.ai1wm-info-message{background-color:#d9edf7;color:#31708f;font-size:11px}.ai1wm-message.ai1wm-error-message{background-color:#f1d7d7;color:#a95252;font-size:12px}.ai1wm-message.ai1wm-red-message{color:#d95c5c;border:2px solid #d95c5c;background-color:transparent}.ai1wm-message.ai1wm-red-message h3{margin:.4em 0;color:#d95c5c}.ai1wm-message p{margin:4px 0;font-size:12px}.ai1wm-message-warning{display:block;font-size:14px;line-height:18px;padding:12px 20px;margin:0 0 22px;background-color:#f9f9f9;border:1px solid #d6d6d6;border-radius:3px;box-shadow:0 1px 0 0 #fff inset;border-left:4px solid #ffba00}.ai1wm-button-group{border:2px solid #27ae60;background-color:transparent;color:#27ae60;border-radius:5px;cursor:pointer;text-transform:uppercase;font-weight:600;transition:background-color .2s ease-out;display:inline-block;text-align:left}.ai1wm-button-group.ai1wm-button-export,.ai1wm-button-group.ai1wm-button-import{box-sizing:content-box}.ai1wm-button-group.ai1wm-button-export.ai1wm-open>.ai1wm-dropdown-menu{height:234px;border-top:1px solid #27ae60}.ai1wm-button-group.ai1wm-button-import.ai1wm-open>.ai1wm-dropdown-menu{height:262px;border-top:1px solid #27ae60}.ai1wm-button-group .ai1wm-button-main{position:relative;padding:6px 50px 6px 25px;box-sizing:content-box}.ai1wm-button-group .ai1wm-dropdown-menu{height:0;overflow:hidden;transition:height .2s cubic-bezier(.19,1,.22,1);border-top:none}.ai1wm-dropdown-menu{list-style:none}.ai1wm-dropdown-menu,.ai1wm-dropdown-menu li{margin:0!important;padding:0}.ai1wm-dropdown-menu li a,.ai1wm-dropdown-menu li a:visited{display:block;margin:10px 0;padding:0 26px;text-decoration:none;color:#27ae60;text-align:left;box-sizing:content-box}.ai1wm-dropdown-menu li a:hover,.ai1wm-dropdown-menu li a:visited:hover{text-decoration:none;color:#111}.ai1mw-lines,.ai1wm-line{display:inline-block;position:absolute}.ai1mw-lines{top:9px;right:20px;width:12px;height:10px}.ai1wm-line{width:100%;height:2px;margin:auto;background:#27ae60;transition:all .2s ease-in-out}.ai1wm-line-first{top:0;left:0}div.ai1wm-open .ai1wm-line-first,div.ai1wm-open .ai1wm-line-third{top:50%}.ai1wm-line-second{top:50%;left:0}.ai1wm-line-third{top:100%;left:0}.ai1wm-button-blue,.ai1wm-button-gray,.ai1wm-button-green,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #95a5a6;background-color:transparent;color:#95a5a6;border-radius:5px;cursor:pointer;padding:5px 25px 5px 26px;text-transform:uppercase;font-weight:600;outline:0;transition:background-color .2s ease-out;text-decoration:none}.ai1wm-button-gray:hover{background-color:#95a5a6;color:#fff}.ai1wm-button-blue,.ai1wm-button-green,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #27ae60;color:#27ae60}.ai1wm-button-green:hover{background-color:#27ae60;color:#fff}.ai1wm-button-blue,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #6eb649;color:#6eb649}.ai1wm-button-green-small:hover{background-color:#6eb649;color:#fff}.ai1wm-button-blue,.ai1wm-button-red{border:2px solid #00aff0;color:#00aff0}.ai1wm-button-blue:hover{background-color:#00aff0;color:#fff}.ai1wm-button-red{border:2px solid #e74c3c;color:#e74c3c}.ai1wm-button-red:hover{background-color:#e74c3c;color:#fff}.ai1wm-button-alone{border-radius:50px!important;padding:5px 8px!important}.ai1wm-button-blue[disabled=disabled],.ai1wm-button-green-small[disabled=disabled],.ai1wm-button-green[disabled=disabled],.ai1wm-button-red[disabled=disabled]{opacity:.6;cursor:default}.ai1wm-button-blue[disabled=disabled]:hover{color:#00aff0}.ai1wm-button-red[disabled=disabled]:hover{color:#e74c3c}.ai1wm-button-green[disabled=disabled]:hover{color:#27ae60}.ai1wm-button-blue[disabled=disabled]:hover,.ai1wm-button-green-small[disabled=disabled]:hover,.ai1wm-button-green[disabled=disabled]:hover,.ai1wm-button-red[disabled=disabled]:hover{background:0 0}.ai1wm-button-blue i,.ai1wm-button-gray i,.ai1wm-button-green i,.ai1wm-button-red i{margin-left:-.5em;margin-right:.2em}.ai1wm-message-close-button{position:absolute;right:10px;top:6px;text-decoration:none;font-size:10px}input[type=radio].ai1wm-flat-radio-button{display:none}input[type=radio].ai1wm-flat-radio-button+a i,input[type=radio].ai1wm-flat-radio-button+label i{vertical-align:middle;float:left;width:25px;height:25px;border-radius:50%;background:0 0;border:2px solid #ccc;content:" ";cursor:pointer;position:relative;box-sizing:content-box}input[type=radio].ai1wm-flat-radio-button:checked+a i,input[type=radio].ai1wm-flat-radio-button:checked+label i{background-color:#d9d9d9;border-color:#6f6f6f}.ai1wm-clear{*zoom:1;clear:both}.ai1wm-clear:after,.ai1wm-clear:before{content:" ";display:table}.ai1wm-clear:after{clear:both}.ai1wm-list-expanded{display:block!important}.ai1wm-field-inline input{border-radius:5px}.ai1wm-container .ai1wm-row label{position:relative;top:-1px}.ai1wm-share-button-container{text-align:center}.ai1wm-share-button-container .ai1wm-share-button{text-decoration:none;margin:10px;font-size:30px}.ai1wm-report-problem{position:relative;float:right}.ai1wm-report-problem-dialog{position:absolute;z-index:999;width:280px;right:0;background-color:#fff;margin:6px 0 0;padding:15px 15px 10px;border:1px solid #d6d6d6;border-radius:3px;box-shadow:0 1px 0 0 #fff inset;display:none}.ai1wm-query div input,.ai1wm-report-email{width:100%;font-weight:400;font-size:.8rem;height:2.3rem;line-height:2.3rem;border-radius:5px;margin-bottom:4px;padding:0 10px}.ai1wm-report-message{width:100%;border-radius:3px;font-size:.8rem;padding:6px 10px;resize:none}.ai1wm-feedback-cancel:active,.ai1wm-feedback-cancel:link,.ai1wm-feedback-cancel:visited,.ai1wm-report-cancel:active,.ai1wm-report-cancel:link,.ai1wm-report-cancel:visited{float:left;line-height:34px;outline:0;text-decoration:none;color:#e74c3c}.ai1wm-form-submit{float:right}.ai1wm-report-active{display:block}.ai1wm-report-terms-segment{font-size:.7rem;line-height:1rem;margin:4px 0 8px}.ai1wm-report-terms-segment>.ai1wm-report-terms{border-radius:3px}.ai1wm-no-underline{text-decoration:none}.ai1wm-top-negative-four{top:-4px}.ai1wm-feedback-form{display:none}.ai1wm-feedback-types{margin:0;padding:0;list-style:none}.ai1wm-feedback-types li{margin:14px 0;padding:0}.ai1wm-feedback-types>li>a>span,.ai1wm-feedback-types>li>label>span{display:inline-block;padding:5px 0 6px 8px}.ai1wm-feedback-types>li>a{height:29px;outline:0;color:#333;text-deciration:none}.ai1wm-loader{display:inline-block;width:128px;height:128px;position:relative;-webkit-animation:ai1wm-rotate 1.5s infinite linear;animation:ai1wm-rotate 1.5s infinite linear;background:url(../img/logo-128x128.png);background-repeat:no-repeat;background-position:center center}.ai1wm-hide{display:none}.ai1wm-label{border:1px solid #5cb85c;background-color:transparent;color:#5cb85c;cursor:pointer;text-transform:uppercase;font-weight:600;outline:0;transition:background-color .2s ease-out;padding:.2em .6em;font-size:.8em;border-radius:5px}.ai1wm-label:hover{background-color:#5cb85c;color:#fff}.ai1wm-dialog-message{text-align:left;line-height:1.5em}.ai1wm-accordion{margin:1em 0;display:block}.ai1wm-accordion h4{cursor:pointer;color:rgba(0,116,162,.8);margin:0}.ai1wm-accordion h4 small{color:#444;font-weight:400}.ai1wm-accordion .ai1wm-icon-arrow-right{transition:transform .1s ease-out;transition:transform .1s ease-out,-webkit-transform .1s ease-out}.ai1wm-accordion ul{margin:0;padding:0;list-style:none}.ai1wm-accordion h4 small,.ai1wm-accordion ul li small{display:inline;float:none;width:auto}.ai1wm-accordion.ai1wm-open h4 .ai1wm-icon-arrow-right{-webkit-transform:rotate(90deg);transform:rotate(90deg);display:inline-block}.ai1wm-accordion.ai1wm-open ul{height:auto;margin:.6em 0 0 2em;visibility:visible}.ai1wm-overlay{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);z-index:100001}.ai1wm-modal-container{position:fixed;display:none;top:50%;left:50%;z-index:100002;width:480px;height:auto;padding:16px;-webkit-transform:translate(-240px,-94px);transform:translate(-240px,-94px);border:1px solid #fff;box-shadow:0 2px 6px #292929;border-radius:6px;background:#f6f6f6;box-sizing:border-box;text-align:center}.ai1wm-modal-container section{display:block;min-height:102px}.ai1wm-modal-container section h1{margin:0;padding:0}.ai1wm-modal-container section h1 .ai1wm-title-green{color:#27ae60;font-size:20px}.ai1wm-modal-container section h1 .ai1wm-title-red{color:#e74c3c;font-size:20px}.ai1wm-modal-container section h1 .ai1wm-title-grey{color:gray;font-size:20px}.ai1wm-modal-container section h1 .ai1wm-loader{width:32px;height:32px;background:url(../img/logo-32x32.png)}.ai1wm-modal-container section h1 .ai1wm-icon-notification{font-size:1.2em;color:#e74c3c}.ai1wm-modal-container section p{margin:0;padding:12px 0}.ai1wm-modal-container section p .ai1wm-modal-sites p{padding:4px 10px;text-align:left}.ai1wm-modal-container section p .ai1wm-modal-sites input,.ai1wm-modal-container section p .ai1wm-modal-sites select{padding:0 6px;width:100%;border-radius:3px;height:30px;line-height:30px}.ai1wm-modal-container section p .ai1wm-modal-subtitle-green{color:#27ae60}.ai1wm-modal-container section p .ai1wm-modal-subtitle-red{color:#e74c3c}.ai1wm-modal-container section p .ai1wm-modal-subdescription{display:block;text-align:left}.ai1wm-modal-container section p a.ai1wm-button-green{display:inline-block;position:relative;top:26px}.ai1wm-modal-container section p a.ai1wm-emphasize{-webkit-animation:ai1wm-emphasize 1s infinite;animation:ai1wm-emphasize 1s infinite}.ai1wm-modal-container section p em{display:block;color:#34495e;font-style:normal}.ai1wm-modal-container section p.ai1wm-import-modal-content{text-align:left}.ai1wm-modal-container .ai1wm-import-modal-actions{border-top:1px solid #ccc;padding-top:1em;text-align:right}.ai1wm-modal-container .ai1wm-import-modal-actions .ai1wm-button-gray{margin-right:1em}.ai1wm-modal-container .ai1wm-import-modal-notice{border-top:1px solid #ccc}.ai1wm-modal-container .ai1wm-import-modal-notice p{font-weight:700;margin:0;padding-top:16px;text-align:center}.ai1wm-query-arrow{position:relative;top:4px;float:right}.ai1wm-query.ai1wm-open{background:#ebebeb!important}.ai1wm-query.ai1wm-open p small{border-bottom:1px dashed #000}.ai1wm-query.ai1wm-open div{visibility:visible!important;height:82px!important;margin-top:8px}.ai1wm-query.ai1wm-open .ai1wm-query-arrow{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.ai1wm-query{width:100%;margin:0 0 10px;list-style:none;background:0 0;border:1px solid #d8d8d8;padding:10px;border-radius:5px;box-sizing:border-box}.ai1wm-accordion ul,.ai1wm-query div{transition:height .2s cubic-bezier(.19,1,.22,1);visibility:hidden;height:0}.ai1wm-query div input{border:1px solid #ddd;box-shadow:inset 0 1px 2px rgba(0,0,0,.07);background-color:#fff;color:#333;transition:.05s border-color ease-in-out}.ai1wm-query div input:focus{border-color:#5b9dd9;box-shadow:0 0 2px rgba(30,140,190,.8)}.ai1wm-query p{margin:0;cursor:pointer}.ai1wm-query p small{display:inline;width:auto;float:none}.ai1wm-query-arrow{transition:transform .1s ease-out;transition:transform .1s ease-out,-webkit-transform .1s ease-out}.ai1wm-include-tables{display:inline-block;width:300px;margin:0 6px 0 0}.ai1wm-include-plugins{display:inline-block;width:300px;vertical-align:top}.ai1wm-include-media{display:inline-block;width:300px;margin:0 6px 0 0}.ai1wm-include-themes{display:inline-block;width:300px;vertical-align:top}.ai1wm-export-stats{margin-bottom:1em}#ai1wm-export-download{display:none;margin:0 0 2em}#ai1wm-export-download-stop{display:inline-block;margin:0 0 2em}#ai1wm-export-download.ai1wm-active{display:inline-block;-webkit-animation:ai1wm-fadein .5s;animation:ai1wm-fadein .5s}#ai1wm-export-download.ai1wm-emphasize{display:inline-block;-webkit-animation:ai1wm-emphasize 1s infinite;animation:ai1wm-emphasize 1s infinite}#ai1wm-export-download-size{display:block;color:#34495e}#ai1wm-queries{padding:0}
|
| 1 |
+
@charset "UTF-8";@-webkit-keyframes ai1wm-rotate{0%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}25%{-webkit-transform:rotateZ(-90deg);transform:rotateZ(-90deg)}50%{-webkit-transform:rotateZ(-180deg);transform:rotateZ(-180deg)}75%{-webkit-transform:rotateZ(-270deg);transform:rotateZ(-270deg)}to{-webkit-transform:rotateZ(-360deg);transform:rotateZ(-360deg)}}@-webkit-keyframes ai1wm-emphasize{0%,to{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.2);transform:scale(1.2)}}@-webkit-keyframes ai1wm-fadein{0%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1.5);transform:scale(1.5)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes ai1wm-rotate{0%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}25%{-webkit-transform:rotateZ(-90deg);transform:rotateZ(-90deg)}50%{-webkit-transform:rotateZ(-180deg);transform:rotateZ(-180deg)}75%{-webkit-transform:rotateZ(-270deg);transform:rotateZ(-270deg)}to{-webkit-transform:rotateZ(-360deg);transform:rotateZ(-360deg)}}@keyframes ai1wm-emphasize{0%,to{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.2);transform:scale(1.2)}}@keyframes ai1wm-fadein{0%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1.5);transform:scale(1.5)}to{-webkit-transform:scale(1);transform:scale(1)}}.ai1wm-divider{-ms-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;border:0;margin:0;background-color:transparent;font-size:14px;font-weight:700;text-align:center;text-transform:uppercase;color:rgba(0,0,0,.8);position:relative;top:0%;left:0%;margin:1rem 2.5rem;height:auto;padding:0;line-height:1}.ai1wm-divider:after,.ai1wm-divider:before{position:absolute;content:" ";z-index:3;width:50%;top:50%;height:0%;border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(255,255,255,.8)}.ai1wm-divider:before{left:0%;margin-left:-2.5rem}.ai1wm-divider:after{left:auto;right:0%;margin-right:-2.5rem}[class*=" ai1wm-icon-"],[class^=ai1wm-icon-]{font-family:'servmask';speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ai1wm-icon-file-zip:before{content:"\e60f"}.ai1wm-icon-folder:before{content:"\e60e"}.ai1wm-icon-file:before{content:"\e60b"}.ai1wm-icon-file-content:before{content:"\e60c"}.ai1wm-icon-cloud-upload:before{content:"\e600"}.ai1wm-icon-history:before{content:"\e603"}.ai1wm-icon-notification:before{content:"\e619"}.ai1wm-icon-arrow-down:before{content:"\e604"}.ai1wm-icon-close:before{content:"\e61a"}.ai1wm-icon-wordpress2:before{content:"\e620"}.ai1wm-icon-arrow-right:before{content:"\e605"}.ai1wm-icon-plus2:before{content:"\e607"}.ai1wm-icon-export:before{content:"\e601"}.ai1wm-icon-publish:before{content:"\e602"}.ai1wm-icon-paperplane:before{content:"\e608"}.ai1wm-icon-help:before{content:"\e609"}.ai1wm-icon-chevron-right:before{content:"\e60d"}.ai1wm-icon-dropbox:before{content:"\e606"}.ai1wm-icon-gear:before{content:"\e60a"}.ai1wm-icon-database:before{content:"\e964"}.ai1wm-icon-upload2:before{content:"\e9c6"}.ai1wm-icon-checkmark:before{content:"\ea10"}.ai1wm-icon-checkmark2:before{content:"\ea11"}.ai1wm-icon-enter:before{content:"\ea13"}.ai1wm-icon-exit:before{content:"\ea14"}.ai1wm-icon-amazon:before{content:"\ea87"}.ai1wm-icon-onedrive:before{content:"\eaaf"}.ai1wm-icon-alone{margin:0!important}@media (min-width:855px){.ai1wm-row{margin-right:399px}.ai1wm-row:after,.ai1wm-row:before{content:" ";display:table}.ai1wm-row:after{clear:both}.ai1wm-left{float:left;width:100%}.ai1wm-right{float:right;width:377px;margin-right:-399px}.ai1wm-right .ai1wm-sidebar{width:100%}.ai1wm-right .ai1wm-segment{width:333px;border:1px solid #d6d6d6;border-radius:3px;box-shadow:inset 0 1px 0 0 #fff;color:#333;background-color:#f9f9f9;padding:20px;text-decoration:none;text-shadow:0 1px 0 #fff;background-clip:padding-box}.ai1wm-right .ai1wm-segment h2{margin:22px 0 0;padding:0;font-weight:700;font-size:14px;text-transform:uppercase;text-align:center}.ai1wm-right .ai1wm-feedback-email{width:100%;font-weight:400;font-size:.8rem;height:2.3rem;line-height:2.3rem;border-radius:5px;margin-bottom:4px;padding:0 10px}.ai1wm-right .ai1wm-feedback-message{width:100%;border-radius:3px;font-size:.8rem;padding:6px 10px;resize:none}.ai1wm-right .ai1wm-feedback-terms-segment{font-size:.7rem;line-height:1rem;margin:4px 0 8px}.ai1wm-right .ai1wm-feedback-terms-segment>.ai1wm-feedback-terms{border-radius:3px}}.ai1wm-holder{position:relative;border:1px solid #d6d6d6;border-radius:3px;box-shadow:inset 0 1px 0 0 #fff;padding:20px;background:#f9f9f9}.ai1wm-holder h1{margin:0;padding:0;float:left;font-weight:300;font-size:22px;text-transform:uppercase}.ai1wm-holder h1 i{position:relative;top:2px}@media (max-width:854px){.ai1wm-container{margin-left:10px!important}.ai1wm-right,.ai1wm-row{margin-right:0!important}.ai1wm-right{float:left!important;width:100%!important;margin-top:18px}.ai1wm-right .ai1wm-sidebar{width:auto!important;border:1px solid #d6d6d6;border-radius:3px;box-shadow:inset 0 1px 0 0 #fff;padding:20px;background:#f9f9f9}.ai1wm-right .ai1wm-feedback-email{width:100%;font-weight:400;font-size:.8rem;height:2.3rem;line-height:2.3rem;border-radius:5px;margin-bottom:4px;padding:0 10px}.ai1wm-right .ai1wm-feedback-message{width:100%;border-radius:3px;font-size:.8rem;padding:6px 10px;resize:none}.ai1wm-right .ai1wm-feedback-terms-segment{font-size:.7rem;line-height:1rem;margin:4px 0 8px;border-radius:3px}.ai1wm-right .ai1wm-feedback-terms-segment>.ai1wm-feedback-terms{border-radius:3px}}.ai1wm-container{margin:20px 20px 0 2px}.ai1wm-container:after,.ai1wm-container:before{content:" ";display:table}.ai1wm-container:after{clear:both}.ai1wm-replace-row{width:100%;box-shadow:outset 0 1px 0 0 white;border-radius:3px;color:#333;font-size:11px;font-weight:700;background-color:#f9f9f9;text-decoration:none;text-shadow:0 1px 0 #fff;background-clip:padding-box;margin-bottom:10px}.ai1wm-replace-row .ai1wm-field-inline{float:left;width:100%}.ai1wm-replace-row .ai1wm-field-inline input{width:100%;font-weight:400;font-size:.8rem;padding:0 10px;height:2.3rem;line-height:2.3rem;margin-bottom:4px}.ai1wm-field{margin-bottom:4px}.ai1wm-field input[type=text],.ai1wm-field textarea{width:100%;font-weight:400}.ai1wm-field-set{margin-top:18px}.ai1wm-message{-moz-box-sizing:border-box;background-color:#efefef;border-radius:4px;color:rgba(0,0,0,.6);height:auto;margin:10px 0;min-height:18px;padding:6px 10px;position:relative;border:1px solid;transition:opacity .1s ease 0s,color .1s ease 0s,background .1s ease 0s,box-shadow .1s ease 0s}.ai1wm-message.ai1wm-success-message{background-color:#f2f8f0;color:#119000;font-size:12px}.ai1wm-message.ai1wm-info-message{background-color:#d9edf7;color:#31708f;font-size:11px}.ai1wm-message.ai1wm-error-message{background-color:#f1d7d7;color:#a95252;font-size:12px}.ai1wm-message.ai1wm-red-message{color:#d95c5c;border:2px solid #d95c5c;background-color:transparent}.ai1wm-message.ai1wm-red-message h3{margin:.4em 0;color:#d95c5c}.ai1wm-message p{margin:4px 0;font-size:12px}.ai1wm-message-warning{display:block;font-size:14px;line-height:18px;padding:12px 20px;margin:0 0 22px;background-color:#f9f9f9;border:1px solid #d6d6d6;border-radius:3px;box-shadow:0 1px 0 0 #fff inset;border-left:4px solid #ffba00}.ai1wm-button-group{border:2px solid #27ae60;background-color:transparent;color:#27ae60;border-radius:5px;cursor:pointer;text-transform:uppercase;font-weight:600;transition:background-color .2s ease-out;display:inline-block;text-align:left}.ai1wm-button-group.ai1wm-button-export,.ai1wm-button-group.ai1wm-button-import{box-sizing:content-box}.ai1wm-button-group.ai1wm-button-export.ai1wm-open>.ai1wm-dropdown-menu{height:260px;border-top:1px solid #27ae60}.ai1wm-button-group.ai1wm-button-import.ai1wm-open>.ai1wm-dropdown-menu{height:288px;border-top:1px solid #27ae60}.ai1wm-button-group .ai1wm-button-main{position:relative;padding:6px 50px 6px 25px;box-sizing:content-box}.ai1wm-button-group .ai1wm-dropdown-menu{height:0;overflow:hidden;transition:height .2s cubic-bezier(.19,1,.22,1);border-top:none}.ai1wm-dropdown-menu{list-style:none}.ai1wm-dropdown-menu,.ai1wm-dropdown-menu li{margin:0!important;padding:0}.ai1wm-dropdown-menu li a,.ai1wm-dropdown-menu li a:visited{display:block;margin:10px 0;padding:0 26px;text-decoration:none;color:#27ae60;text-align:left;box-sizing:content-box}.ai1wm-dropdown-menu li a:hover,.ai1wm-dropdown-menu li a:visited:hover{text-decoration:none;color:#111}.ai1mw-lines,.ai1wm-line{display:inline-block;position:absolute}.ai1mw-lines{top:9px;right:20px;width:12px;height:10px}.ai1wm-line{width:100%;height:2px;margin:auto;background:#27ae60;transition:all .2s ease-in-out}.ai1wm-line-first{top:0;left:0}div.ai1wm-open .ai1wm-line-first,div.ai1wm-open .ai1wm-line-third{top:50%}.ai1wm-line-second{top:50%;left:0}.ai1wm-line-third{top:100%;left:0}.ai1wm-button-blue,.ai1wm-button-gray,.ai1wm-button-green,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #95a5a6;background-color:transparent;color:#95a5a6;border-radius:5px;cursor:pointer;padding:5px 25px 5px 26px;text-transform:uppercase;font-weight:600;outline:0;transition:background-color .2s ease-out;text-decoration:none}.ai1wm-button-gray:hover{background-color:#95a5a6;color:#fff}.ai1wm-button-blue,.ai1wm-button-green,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #27ae60;color:#27ae60}.ai1wm-button-green:hover{background-color:#27ae60;color:#fff}.ai1wm-button-blue,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #6eb649;color:#6eb649}.ai1wm-button-green-small:hover{background-color:#6eb649;color:#fff}.ai1wm-button-blue,.ai1wm-button-red{border:2px solid #00aff0;color:#00aff0}.ai1wm-button-blue:hover{background-color:#00aff0;color:#fff}.ai1wm-button-red{border:2px solid #e74c3c;color:#e74c3c}.ai1wm-button-red:hover{background-color:#e74c3c;color:#fff}.ai1wm-button-alone{border-radius:50px!important;padding:5px 8px!important}.ai1wm-button-blue[disabled=disabled],.ai1wm-button-green-small[disabled=disabled],.ai1wm-button-green[disabled=disabled],.ai1wm-button-red[disabled=disabled]{opacity:.6;cursor:default}.ai1wm-button-blue[disabled=disabled]:hover{color:#00aff0}.ai1wm-button-red[disabled=disabled]:hover{color:#e74c3c}.ai1wm-button-green[disabled=disabled]:hover{color:#27ae60}.ai1wm-button-blue[disabled=disabled]:hover,.ai1wm-button-green-small[disabled=disabled]:hover,.ai1wm-button-green[disabled=disabled]:hover,.ai1wm-button-red[disabled=disabled]:hover{background:0 0}.ai1wm-button-blue i,.ai1wm-button-gray i,.ai1wm-button-green i,.ai1wm-button-red i{margin-left:-.5em;margin-right:.2em}.ai1wm-message-close-button{position:absolute;right:10px;top:6px;text-decoration:none;font-size:10px}input[type=radio].ai1wm-flat-radio-button{display:none}input[type=radio].ai1wm-flat-radio-button+a i,input[type=radio].ai1wm-flat-radio-button+label i{vertical-align:middle;float:left;width:25px;height:25px;border-radius:50%;background:0 0;border:2px solid #ccc;content:" ";cursor:pointer;position:relative;box-sizing:content-box}input[type=radio].ai1wm-flat-radio-button:checked+a i,input[type=radio].ai1wm-flat-radio-button:checked+label i{background-color:#d9d9d9;border-color:#6f6f6f}.ai1wm-clear{*zoom:1;clear:both}.ai1wm-clear:after,.ai1wm-clear:before{content:" ";display:table}.ai1wm-clear:after{clear:both}.ai1wm-list-expanded{display:block!important}.ai1wm-field-inline input{border-radius:5px}.ai1wm-container .ai1wm-row label{position:relative;top:-1px}.ai1wm-share-button-container{text-align:center}.ai1wm-share-button-container .ai1wm-share-button{text-decoration:none;margin:10px;font-size:30px}.ai1wm-report-problem{position:relative;float:right}.ai1wm-report-problem-dialog{position:absolute;z-index:999;width:280px;right:0;background-color:#fff;margin:6px 0 0;padding:15px 15px 10px;border:1px solid #d6d6d6;border-radius:3px;box-shadow:0 1px 0 0 #fff inset;display:none}.ai1wm-query div input,.ai1wm-report-email{width:100%;font-weight:400;font-size:.8rem;height:2.3rem;line-height:2.3rem;border-radius:5px;margin-bottom:4px;padding:0 10px}.ai1wm-report-message{width:100%;border-radius:3px;font-size:.8rem;padding:6px 10px;resize:none}.ai1wm-feedback-cancel:active,.ai1wm-feedback-cancel:link,.ai1wm-feedback-cancel:visited,.ai1wm-report-cancel:active,.ai1wm-report-cancel:link,.ai1wm-report-cancel:visited{float:left;line-height:34px;outline:0;text-decoration:none;color:#e74c3c}.ai1wm-form-submit{float:right}.ai1wm-report-active{display:block}.ai1wm-report-terms-segment{font-size:.7rem;line-height:1rem;margin:4px 0 8px}.ai1wm-report-terms-segment>.ai1wm-report-terms{border-radius:3px}.ai1wm-no-underline{text-decoration:none}.ai1wm-top-negative-four{top:-4px}.ai1wm-feedback-form{display:none}.ai1wm-feedback-types{margin:0;padding:0;list-style:none}.ai1wm-feedback-types li{margin:14px 0;padding:0}.ai1wm-feedback-types>li>a>span,.ai1wm-feedback-types>li>label>span{display:inline-block;padding:5px 0 6px 8px}.ai1wm-feedback-types>li>a{height:29px;outline:0;color:#333;text-deciration:none}.ai1wm-loader{display:inline-block;width:128px;height:128px;position:relative;-webkit-animation:ai1wm-rotate 1.5s infinite linear;animation:ai1wm-rotate 1.5s infinite linear;background:url(../img/logo-128x128.png);background-repeat:no-repeat;background-position:center center}.ai1wm-hide{display:none}.ai1wm-label{border:1px solid #5cb85c;background-color:transparent;color:#5cb85c;cursor:pointer;text-transform:uppercase;font-weight:600;outline:0;transition:background-color .2s ease-out;padding:.2em .6em;font-size:.8em;border-radius:5px}.ai1wm-label:hover{background-color:#5cb85c;color:#fff}.ai1wm-dialog-message{text-align:left;line-height:1.5em}.ai1wm-accordion{margin:1em 0;display:block}.ai1wm-accordion h4{cursor:pointer;color:rgba(0,116,162,.8);margin:0}.ai1wm-accordion h4 small{color:#444;font-weight:400}.ai1wm-accordion .ai1wm-icon-arrow-right{transition:transform .1s ease-out;transition:transform .1s ease-out,-webkit-transform .1s ease-out}.ai1wm-accordion ul{margin:0;padding:0;list-style:none}.ai1wm-accordion h4 small,.ai1wm-accordion ul li small{display:inline;float:none;width:auto}.ai1wm-accordion.ai1wm-open h4 .ai1wm-icon-arrow-right{-webkit-transform:rotate(90deg);transform:rotate(90deg);display:inline-block}.ai1wm-accordion.ai1wm-open ul{height:auto;margin:.6em 0 0 2em;visibility:visible}.ai1wm-overlay{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);z-index:100001}.ai1wm-modal-container{position:fixed;display:none;top:50%;left:50%;z-index:100002;width:480px;height:auto;padding:16px;-webkit-transform:translate(-240px,-94px);transform:translate(-240px,-94px);border:1px solid #fff;box-shadow:0 2px 6px #292929;border-radius:6px;background:#f6f6f6;box-sizing:border-box;text-align:center}.ai1wm-modal-container section{display:block;min-height:102px}.ai1wm-modal-container section h1{margin:0;padding:0}.ai1wm-modal-container section h1 .ai1wm-title-green{color:#27ae60;font-size:20px}.ai1wm-modal-container section h1 .ai1wm-title-red{color:#e74c3c;font-size:20px}.ai1wm-modal-container section h1 .ai1wm-title-grey{color:gray;font-size:20px}.ai1wm-modal-container section h1 .ai1wm-loader{width:32px;height:32px;background:url(../img/logo-32x32.png)}.ai1wm-modal-container section h1 .ai1wm-icon-notification{font-size:1.2em;color:#e74c3c}.ai1wm-modal-container section p{margin:0;padding:12px 0}.ai1wm-modal-container section p .ai1wm-modal-sites p{padding:4px 10px;text-align:left}.ai1wm-modal-container section p .ai1wm-modal-sites input,.ai1wm-modal-container section p .ai1wm-modal-sites select{padding:0 6px;width:100%;border-radius:3px;height:30px;line-height:30px}.ai1wm-modal-container section p .ai1wm-modal-subtitle-green{color:#27ae60}.ai1wm-modal-container section p .ai1wm-modal-subtitle-red{color:#e74c3c}.ai1wm-modal-container section p .ai1wm-modal-subdescription{display:block;text-align:left}.ai1wm-modal-container section p a.ai1wm-button-green{display:inline-block;position:relative;top:26px}.ai1wm-modal-container section p a.ai1wm-emphasize{-webkit-animation:ai1wm-emphasize 1s infinite;animation:ai1wm-emphasize 1s infinite}.ai1wm-modal-container section p em{display:block;color:#34495e;font-style:normal}.ai1wm-modal-container section p.ai1wm-import-modal-content{text-align:left}.ai1wm-modal-container .ai1wm-import-modal-actions{border-top:1px solid #ccc;padding-top:1em;text-align:right}.ai1wm-modal-container .ai1wm-import-modal-actions .ai1wm-button-gray{margin-right:1em}.ai1wm-modal-container .ai1wm-import-modal-notice{border-top:1px solid #ccc}.ai1wm-modal-container .ai1wm-import-modal-notice p{font-weight:700;margin:0;padding-top:16px;text-align:center}.ai1wm-query-arrow{position:relative;top:4px;float:right}.ai1wm-query.ai1wm-open{background:#ebebeb!important}.ai1wm-query.ai1wm-open p small{border-bottom:1px dashed #000}.ai1wm-query.ai1wm-open div{visibility:visible!important;height:82px!important;margin-top:8px}.ai1wm-query.ai1wm-open .ai1wm-query-arrow{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.ai1wm-query{width:100%;margin:0 0 10px;list-style:none;background:0 0;border:1px solid #d8d8d8;padding:10px;border-radius:5px;box-sizing:border-box}.ai1wm-accordion ul,.ai1wm-query div{transition:height .2s cubic-bezier(.19,1,.22,1);visibility:hidden;height:0}.ai1wm-query div input{border:1px solid #ddd;box-shadow:inset 0 1px 2px rgba(0,0,0,.07);background-color:#fff;color:#333;transition:.05s border-color ease-in-out}.ai1wm-query div input:focus{border-color:#5b9dd9;box-shadow:0 0 2px rgba(30,140,190,.8)}.ai1wm-query p{margin:0;cursor:pointer}.ai1wm-query p small{display:inline;width:auto;float:none}.ai1wm-query-arrow{transition:transform .1s ease-out;transition:transform .1s ease-out,-webkit-transform .1s ease-out}.ai1wm-include-tables{display:inline-block;width:300px;margin:0 6px 0 0}.ai1wm-include-plugins{display:inline-block;width:300px;vertical-align:top}.ai1wm-include-media{display:inline-block;width:300px;margin:0 6px 0 0}.ai1wm-include-themes{display:inline-block;width:300px;vertical-align:top}.ai1wm-export-stats{margin-bottom:1em}#ai1wm-export-download{display:none;margin:0 0 2em}#ai1wm-export-download-stop{display:inline-block;margin:0 0 2em}#ai1wm-export-download.ai1wm-active{display:inline-block;-webkit-animation:ai1wm-fadein .5s;animation:ai1wm-fadein .5s}#ai1wm-export-download.ai1wm-emphasize{display:inline-block;-webkit-animation:ai1wm-emphasize 1s infinite;animation:ai1wm-emphasize 1s infinite}#ai1wm-export-download-size{display:block;color:#34495e}#ai1wm-queries{padding:0}
|
lib/view/assets/css/import.min.css
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
@charset "UTF-8";@-webkit-keyframes ai1wm-rotate{0%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}25%{-webkit-transform:rotateZ(-90deg);transform:rotateZ(-90deg)}50%{-webkit-transform:rotateZ(-180deg);transform:rotateZ(-180deg)}75%{-webkit-transform:rotateZ(-270deg);transform:rotateZ(-270deg)}to{-webkit-transform:rotateZ(-360deg);transform:rotateZ(-360deg)}}@keyframes ai1wm-rotate{0%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}25%{-webkit-transform:rotateZ(-90deg);transform:rotateZ(-90deg)}50%{-webkit-transform:rotateZ(-180deg);transform:rotateZ(-180deg)}75%{-webkit-transform:rotateZ(-270deg);transform:rotateZ(-270deg)}to{-webkit-transform:rotateZ(-360deg);transform:rotateZ(-360deg)}}@-webkit-keyframes ai1wm-emphasize{0%,to{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.2);transform:scale(1.2)}}@keyframes ai1wm-emphasize{0%,to{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.2);transform:scale(1.2)}}@-webkit-keyframes ai1wm-fadein{0%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1.5);transform:scale(1.5)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes ai1wm-fadein{0%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1.5);transform:scale(1.5)}to{-webkit-transform:scale(1);transform:scale(1)}}.ai1wm-divider{-ms-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;border:0;margin:0;background-color:transparent;font-size:14px;font-weight:700;text-align:center;text-transform:uppercase;color:rgba(0,0,0,.8);position:relative;top:0%;left:0%;margin:1rem 2.5rem;height:auto;padding:0;line-height:1}.ai1wm-divider:after,.ai1wm-divider:before{position:absolute;content:" ";z-index:3;width:50%;top:50%;height:0%;border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(255,255,255,.8)}.ai1wm-divider:before{left:0%;margin-left:-2.5rem}.ai1wm-divider:after{left:auto;right:0%;margin-right:-2.5rem}[class*=" ai1wm-icon-"],[class^=ai1wm-icon-]{font-family:'servmask';speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ai1wm-icon-file-zip:before{content:"\e60f"}.ai1wm-icon-folder:before{content:"\e60e"}.ai1wm-icon-file:before{content:"\e60b"}.ai1wm-icon-file-content:before{content:"\e60c"}.ai1wm-icon-cloud-upload:before{content:"\e600"}.ai1wm-icon-history:before{content:"\e603"}.ai1wm-icon-notification:before{content:"\e619"}.ai1wm-icon-arrow-down:before{content:"\e604"}.ai1wm-icon-close:before{content:"\e61a"}.ai1wm-icon-wordpress2:before{content:"\e620"}.ai1wm-icon-arrow-right:before{content:"\e605"}.ai1wm-icon-plus2:before{content:"\e607"}.ai1wm-icon-export:before{content:"\e601"}.ai1wm-icon-publish:before{content:"\e602"}.ai1wm-icon-paperplane:before{content:"\e608"}.ai1wm-icon-help:before{content:"\e609"}.ai1wm-icon-chevron-right:before{content:"\e60d"}.ai1wm-icon-dropbox:before{content:"\e606"}.ai1wm-icon-gear:before{content:"\e60a"}.ai1wm-icon-database:before{content:"\e964"}.ai1wm-icon-upload2:before{content:"\e9c6"}.ai1wm-icon-checkmark:before{content:"\ea10"}.ai1wm-icon-checkmark2:before{content:"\ea11"}.ai1wm-icon-enter:before{content:"\ea13"}.ai1wm-icon-exit:before{content:"\ea14"}.ai1wm-icon-amazon:before{content:"\ea87"}.ai1wm-icon-onedrive:before{content:"\eaaf"}.ai1wm-icon-alone{margin:0!important}@media (min-width:855px){.ai1wm-row{margin-right:399px}.ai1wm-row:after,.ai1wm-row:before{content:" ";display:table}.ai1wm-row:after{clear:both}.ai1wm-left{float:left;width:100%}.ai1wm-right{float:right;width:377px;margin-right:-399px}.ai1wm-right .ai1wm-sidebar{width:100%}.ai1wm-right .ai1wm-segment{width:333px;border:1px solid #d6d6d6;border-radius:3px;box-shadow:inset 0 1px 0 0 #fff;color:#333;background-color:#f9f9f9;padding:20px;text-decoration:none;text-shadow:0 1px 0 #fff;background-clip:padding-box}.ai1wm-right .ai1wm-segment h2{margin:22px 0 0;padding:0;font-weight:700;font-size:14px;text-transform:uppercase;text-align:center}.ai1wm-right .ai1wm-feedback-email{width:100%;font-weight:400;font-size:.8rem;height:2.3rem;line-height:2.3rem;border-radius:5px;margin-bottom:4px;padding:0 10px}.ai1wm-right .ai1wm-feedback-message{width:100%;border-radius:3px;font-size:.8rem;padding:6px 10px;resize:none}.ai1wm-right .ai1wm-feedback-terms-segment{font-size:.7rem;line-height:1rem;margin:4px 0 8px}.ai1wm-right .ai1wm-feedback-terms-segment>.ai1wm-feedback-terms{border-radius:3px}}.ai1wm-holder{position:relative;border:1px solid #d6d6d6;border-radius:3px;box-shadow:inset 0 1px 0 0 #fff;padding:20px;background:#f9f9f9}.ai1wm-holder h1{margin:0;padding:0;float:left;font-weight:300;font-size:22px;text-transform:uppercase}.ai1wm-holder h1 i{position:relative;top:2px}@media (max-width:854px){.ai1wm-container{margin-left:10px!important}.ai1wm-right,.ai1wm-row{margin-right:0!important}.ai1wm-right{float:left!important;width:100%!important;margin-top:18px}.ai1wm-right .ai1wm-sidebar{width:auto!important;border:1px solid #d6d6d6;border-radius:3px;box-shadow:inset 0 1px 0 0 #fff;padding:20px;background:#f9f9f9}.ai1wm-right .ai1wm-feedback-email{width:100%;font-weight:400;font-size:.8rem;height:2.3rem;line-height:2.3rem;border-radius:5px;margin-bottom:4px;padding:0 10px}.ai1wm-right .ai1wm-feedback-message{width:100%;border-radius:3px;font-size:.8rem;padding:6px 10px;resize:none}.ai1wm-right .ai1wm-feedback-terms-segment{font-size:.7rem;line-height:1rem;margin:4px 0 8px;border-radius:3px}.ai1wm-right .ai1wm-feedback-terms-segment>.ai1wm-feedback-terms{border-radius:3px}}.ai1wm-container{margin:20px 20px 0 2px}.ai1wm-container:after,.ai1wm-container:before{content:" ";display:table}.ai1wm-container:after{clear:both}.ai1wm-replace-row{width:100%;box-shadow:outset 0 1px 0 0 white;border-radius:3px;color:#333;font-size:11px;font-weight:700;background-color:#f9f9f9;text-decoration:none;text-shadow:0 1px 0 #fff;background-clip:padding-box;margin-bottom:10px}.ai1wm-replace-row .ai1wm-field-inline{float:left;width:100%}.ai1wm-replace-row .ai1wm-field-inline input{width:100%;font-weight:400;font-size:.8rem;padding:0 10px;height:2.3rem;line-height:2.3rem;margin-bottom:4px}.ai1wm-field{margin-bottom:4px}.ai1wm-field input[type=text],.ai1wm-field textarea{width:100%;font-weight:400}.ai1wm-field-set{margin-top:18px}.ai1wm-message{-moz-box-sizing:border-box;background-color:#efefef;border-radius:4px;color:rgba(0,0,0,.6);height:auto;margin:10px 0;min-height:18px;padding:6px 10px;position:relative;border:1px solid;transition:opacity .1s ease 0s,color .1s ease 0s,background .1s ease 0s,box-shadow .1s ease 0s}.ai1wm-message.ai1wm-success-message{background-color:#f2f8f0;color:#119000;font-size:12px}.ai1wm-message.ai1wm-info-message{background-color:#d9edf7;color:#31708f;font-size:11px}.ai1wm-message.ai1wm-error-message{background-color:#f1d7d7;color:#a95252;font-size:12px}.ai1wm-message.ai1wm-red-message{color:#d95c5c;border:2px solid #d95c5c;background-color:transparent}.ai1wm-message.ai1wm-red-message h3{margin:.4em 0;color:#d95c5c}.ai1wm-message p{margin:4px 0;font-size:12px}.ai1wm-message-warning{display:block;font-size:14px;line-height:18px;padding:12px 20px;margin:0 0 22px;background-color:#f9f9f9;border:1px solid #d6d6d6;border-radius:3px;box-shadow:0 1px 0 0 #fff inset;border-left:4px solid #ffba00}.ai1wm-button-group{border:2px solid #27ae60;background-color:transparent;color:#27ae60;border-radius:5px;cursor:pointer;text-transform:uppercase;font-weight:600;transition:background-color .2s ease-out;display:inline-block;text-align:left}.ai1wm-button-group.ai1wm-button-export,.ai1wm-button-group.ai1wm-button-import{box-sizing:content-box}.ai1wm-button-group.ai1wm-button-export.ai1wm-open>.ai1wm-dropdown-menu{height:234px;border-top:1px solid #27ae60}.ai1wm-button-group.ai1wm-button-import.ai1wm-open>.ai1wm-dropdown-menu{height:262px;border-top:1px solid #27ae60}.ai1wm-button-group .ai1wm-button-main{position:relative;padding:6px 50px 6px 25px;box-sizing:content-box}.ai1wm-button-group .ai1wm-dropdown-menu{height:0;overflow:hidden;transition:height .2s cubic-bezier(.19,1,.22,1);border-top:none}.ai1wm-dropdown-menu{list-style:none}.ai1wm-dropdown-menu,.ai1wm-dropdown-menu li{margin:0!important;padding:0}.ai1wm-dropdown-menu li a,.ai1wm-dropdown-menu li a:visited{display:block;margin:10px 0;padding:0 26px;text-decoration:none;color:#27ae60;text-align:left;box-sizing:content-box}.ai1wm-dropdown-menu li a:hover,.ai1wm-dropdown-menu li a:visited:hover{text-decoration:none;color:#111}.ai1mw-lines,.ai1wm-line{display:inline-block;position:absolute}.ai1mw-lines{top:9px;right:20px;width:12px;height:10px}.ai1wm-line{width:100%;height:2px;margin:auto;background:#27ae60;transition:all .2s ease-in-out}.ai1wm-line-first{top:0;left:0}div.ai1wm-open .ai1wm-line-first,div.ai1wm-open .ai1wm-line-third{top:50%}.ai1wm-line-second{top:50%;left:0}.ai1wm-line-third{top:100%;left:0}.ai1wm-button-blue,.ai1wm-button-gray,.ai1wm-button-green,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #95a5a6;background-color:transparent;color:#95a5a6;border-radius:5px;cursor:pointer;padding:5px 25px 5px 26px;text-transform:uppercase;font-weight:600;outline:0;transition:background-color .2s ease-out;text-decoration:none}.ai1wm-button-gray:hover{background-color:#95a5a6;color:#fff}.ai1wm-button-blue,.ai1wm-button-green,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #27ae60;color:#27ae60}.ai1wm-button-green:hover{background-color:#27ae60;color:#fff}.ai1wm-button-blue,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #6eb649;color:#6eb649}.ai1wm-button-green-small:hover{background-color:#6eb649;color:#fff}.ai1wm-button-blue,.ai1wm-button-red{border:2px solid #00aff0;color:#00aff0}.ai1wm-button-blue:hover{background-color:#00aff0;color:#fff}.ai1wm-button-red{border:2px solid #e74c3c;color:#e74c3c}.ai1wm-button-red:hover{background-color:#e74c3c;color:#fff}.ai1wm-button-alone{border-radius:50px!important;padding:5px 8px!important}.ai1wm-button-blue[disabled=disabled],.ai1wm-button-green-small[disabled=disabled],.ai1wm-button-green[disabled=disabled],.ai1wm-button-red[disabled=disabled]{opacity:.6;cursor:default}.ai1wm-button-blue[disabled=disabled]:hover{color:#00aff0}.ai1wm-button-red[disabled=disabled]:hover{color:#e74c3c}.ai1wm-button-green[disabled=disabled]:hover{color:#27ae60}.ai1wm-button-blue[disabled=disabled]:hover,.ai1wm-button-green-small[disabled=disabled]:hover,.ai1wm-button-green[disabled=disabled]:hover,.ai1wm-button-red[disabled=disabled]:hover{background:0 0}.ai1wm-button-blue i,.ai1wm-button-gray i,.ai1wm-button-green i,.ai1wm-button-red i{margin-left:-.5em;margin-right:.2em}.ai1wm-message-close-button{position:absolute;right:10px;top:6px;text-decoration:none;font-size:10px}input[type=radio].ai1wm-flat-radio-button{display:none}input[type=radio].ai1wm-flat-radio-button+a i,input[type=radio].ai1wm-flat-radio-button+label i{vertical-align:middle;float:left;width:25px;height:25px;border-radius:50%;background:0 0;border:2px solid #ccc;content:" ";cursor:pointer;position:relative;box-sizing:content-box}input[type=radio].ai1wm-flat-radio-button:checked+a i,input[type=radio].ai1wm-flat-radio-button:checked+label i{background-color:#d9d9d9;border-color:#6f6f6f}.ai1wm-clear{*zoom:1;clear:both}.ai1wm-clear:after,.ai1wm-clear:before{content:" ";display:table}.ai1wm-clear:after{clear:both}.ai1wm-list-expanded{display:block!important}.ai1wm-field-inline input{border-radius:5px}.ai1wm-container .ai1wm-row label{position:relative;top:-1px}.ai1wm-share-button-container{text-align:center}.ai1wm-share-button-container .ai1wm-share-button{text-decoration:none;margin:10px;font-size:30px}.ai1wm-report-problem{position:relative;float:right}.ai1wm-report-problem-dialog{position:absolute;z-index:999;width:280px;right:0;background-color:#fff;margin:6px 0 0;padding:15px 15px 10px;border:1px solid #d6d6d6;border-radius:3px;box-shadow:0 1px 0 0 #fff inset;display:none}.ai1wm-report-email{width:100%;font-weight:400;font-size:.8rem;height:2.3rem;line-height:2.3rem;border-radius:5px;margin-bottom:4px;padding:0 10px}.ai1wm-report-message{width:100%;border-radius:3px;font-size:.8rem;padding:6px 10px;resize:none}.ai1wm-feedback-cancel:active,.ai1wm-feedback-cancel:link,.ai1wm-feedback-cancel:visited,.ai1wm-report-cancel:active,.ai1wm-report-cancel:link,.ai1wm-report-cancel:visited{float:left;line-height:34px;outline:0;text-decoration:none;color:#e74c3c}.ai1wm-form-submit{float:right}.ai1wm-report-active{display:block}.ai1wm-report-terms-segment{font-size:.7rem;line-height:1rem;margin:4px 0 8px}.ai1wm-report-terms-segment>.ai1wm-report-terms{border-radius:3px}.ai1wm-import-info a,.ai1wm-no-underline,.ai1wm-unlimited-import a{text-decoration:none}.ai1wm-top-negative-four{top:-4px}.ai1wm-feedback-form{display:none}.ai1wm-feedback-types{margin:0;padding:0;list-style:none}.ai1wm-feedback-types li{margin:14px 0;padding:0}.ai1wm-feedback-types>li>a>span,.ai1wm-feedback-types>li>label>span{display:inline-block;padding:5px 0 6px 8px}.ai1wm-feedback-types>li>a{height:29px;outline:0;color:#333;text-deciration:none}.ai1wm-loader{display:inline-block;width:128px;height:128px;position:relative;-webkit-animation:ai1wm-rotate 1.5s infinite linear;animation:ai1wm-rotate 1.5s infinite linear;background:url(../img/logo-128x128.png);background-repeat:no-repeat;background-position:center center}.ai1wm-hide,div.ai1wm-expandable input{display:none}.ai1wm-label{border:1px solid #5cb85c;background-color:transparent;color:#5cb85c;cursor:pointer;text-transform:uppercase;font-weight:600;outline:0;transition:background-color .2s ease-out;padding:.2em .6em;font-size:.8em;border-radius:5px}.ai1wm-label:hover{background-color:#5cb85c;color:#fff}.ai1wm-dialog-message{text-align:left;line-height:1.5em}.ai1wm-overlay{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);z-index:100001}.ai1wm-modal-container{position:fixed;display:none;top:50%;left:50%;z-index:100002;width:480px;height:auto;padding:16px;-webkit-transform:translate(-240px,-94px);transform:translate(-240px,-94px);border:1px solid #fff;box-shadow:0 2px 6px #292929;border-radius:6px;background:#f6f6f6;box-sizing:border-box;text-align:center}.ai1wm-modal-container section{display:block;min-height:102px}.ai1wm-modal-container section h1{margin:0;padding:0}.ai1wm-modal-container section h1 .ai1wm-title-green{color:#27ae60;font-size:20px}.ai1wm-modal-container section h1 .ai1wm-title-red{color:#e74c3c;font-size:20px}.ai1wm-modal-container section h1 .ai1wm-title-grey{color:gray;font-size:20px}.ai1wm-modal-container section h1 .ai1wm-loader{width:32px;height:32px;background:url(../img/logo-32x32.png)}.ai1wm-modal-container section h1 .ai1wm-icon-notification{font-size:1.2em;color:#e74c3c}.ai1wm-modal-container section p{margin:0;padding:12px 0}.ai1wm-modal-container section p .ai1wm-modal-sites p{padding:4px 10px;text-align:left}.ai1wm-modal-container section p .ai1wm-modal-sites input,.ai1wm-modal-container section p .ai1wm-modal-sites select{padding:0 6px;width:100%;border-radius:3px;height:30px;line-height:30px}.ai1wm-modal-container section p .ai1wm-modal-subtitle-green{color:#27ae60}.ai1wm-modal-container section p .ai1wm-modal-subtitle-red{color:#e74c3c}.ai1wm-modal-container section p .ai1wm-modal-subdescription{display:block;text-align:left}.ai1wm-modal-container section p a.ai1wm-button-green{display:inline-block;position:relative;top:26px}.ai1wm-modal-container section p a.ai1wm-emphasize{-webkit-animation:ai1wm-emphasize 1s infinite;animation:ai1wm-emphasize 1s infinite}.ai1wm-modal-container section p em{display:block;color:#34495e;font-style:normal}.ai1wm-modal-container section p.ai1wm-import-modal-content{text-align:left}.ai1wm-modal-container .ai1wm-import-modal-actions{border-top:1px solid #ccc;padding-top:1em;text-align:right}.ai1wm-modal-container .ai1wm-import-modal-actions .ai1wm-button-gray{margin-right:1em}.ai1wm-modal-container .ai1wm-import-modal-notice{border-top:1px solid #ccc}.ai1wm-modal-container .ai1wm-import-modal-notice p{font-weight:700;margin:0;padding-top:16px;text-align:center}.ai1wm-growl-info{position:fixed;z-index:200000;top:0;margin-top:16px;right:16px;width:200px;padding:16px;background:#f1c40f;border:1px solid #e67e22;border-radius:5px;color:#111}.ai1wm-drag-drop-area{border:3px dashed #ddd;height:200px;margin:20px 0 16px;background:#fff;text-align:center;border-radius:30px}.ai1wm-drag-drop-area>*{pointer-events:none}div.ai1wm-expandable.ai1wm-open input{display:inline-block}#ai1wm-import-file>input{position:absolute;-webkit-transform:translate(-51px,-6px);transform:translate(-51px,-6px);width:158px;height:29px;cursor:pointer;opacity:0;z-index:9999;padding:0;margin:0}#ai1wm-import-file>input::-webkit-file-upload-button{cursor:pointer}.ai1wm-drag-drop-area.dragover{background:rgba(255,255,255,.4);border-color:green}.ai1wm-drag-over.ai1wm-drag-drop-area{border-color:#83b4d8}.ai1wm-import-form{position:relative}#ai1wm-import-init{position:absolute;top:10px;left:10%;width:80%;text-align:center}#ai1wm-import-init p{font-size:18px;color:#9e9e9e}#ai1wm-import-init p i{font-size:46px}#ai1wm-import-init div.ai1wm-button-import{pointer-events:all}.ai1wm-max-upload-size{border-bottom:1px solid #000}.ai1wm-progress-bar{position:relative;display:inline-block;background-color:#bdc3c7;height:32px;width:100%;border-radius:15px;top:35px}.ai1wm-progress-bar-meter,.ai1wm-progress-bar-percent{display:inline-block;float:left;height:32px;line-height:32px;color:#fff}.ai1wm-progress-bar-meter{background-color:#2ecc71;border-radius:15px;text-align:center;width:0}.ai1wm-progress-bar-percent{position:absolute;width:50px;left:50%;-webkit-transform:translate(-24px,0);transform:translate(-24px,0);font-size:.5em;background:0 0}.ai1wm-import-info{display:inline-block;font-size:12px;font-weight:700;margin-top:16px}
|
| 1 |
+
@charset "UTF-8";@-webkit-keyframes ai1wm-rotate{0%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}25%{-webkit-transform:rotateZ(-90deg);transform:rotateZ(-90deg)}50%{-webkit-transform:rotateZ(-180deg);transform:rotateZ(-180deg)}75%{-webkit-transform:rotateZ(-270deg);transform:rotateZ(-270deg)}to{-webkit-transform:rotateZ(-360deg);transform:rotateZ(-360deg)}}@keyframes ai1wm-rotate{0%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}25%{-webkit-transform:rotateZ(-90deg);transform:rotateZ(-90deg)}50%{-webkit-transform:rotateZ(-180deg);transform:rotateZ(-180deg)}75%{-webkit-transform:rotateZ(-270deg);transform:rotateZ(-270deg)}to{-webkit-transform:rotateZ(-360deg);transform:rotateZ(-360deg)}}@-webkit-keyframes ai1wm-emphasize{0%,to{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.2);transform:scale(1.2)}}@keyframes ai1wm-emphasize{0%,to{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.2);transform:scale(1.2)}}@-webkit-keyframes ai1wm-fadein{0%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1.5);transform:scale(1.5)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes ai1wm-fadein{0%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1.5);transform:scale(1.5)}to{-webkit-transform:scale(1);transform:scale(1)}}.ai1wm-divider{-ms-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;border:0;margin:0;background-color:transparent;font-size:14px;font-weight:700;text-align:center;text-transform:uppercase;color:rgba(0,0,0,.8);position:relative;top:0%;left:0%;margin:1rem 2.5rem;height:auto;padding:0;line-height:1}.ai1wm-divider:after,.ai1wm-divider:before{position:absolute;content:" ";z-index:3;width:50%;top:50%;height:0%;border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(255,255,255,.8)}.ai1wm-divider:before{left:0%;margin-left:-2.5rem}.ai1wm-divider:after{left:auto;right:0%;margin-right:-2.5rem}[class*=" ai1wm-icon-"],[class^=ai1wm-icon-]{font-family:'servmask';speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ai1wm-icon-file-zip:before{content:"\e60f"}.ai1wm-icon-folder:before{content:"\e60e"}.ai1wm-icon-file:before{content:"\e60b"}.ai1wm-icon-file-content:before{content:"\e60c"}.ai1wm-icon-cloud-upload:before{content:"\e600"}.ai1wm-icon-history:before{content:"\e603"}.ai1wm-icon-notification:before{content:"\e619"}.ai1wm-icon-arrow-down:before{content:"\e604"}.ai1wm-icon-close:before{content:"\e61a"}.ai1wm-icon-wordpress2:before{content:"\e620"}.ai1wm-icon-arrow-right:before{content:"\e605"}.ai1wm-icon-plus2:before{content:"\e607"}.ai1wm-icon-export:before{content:"\e601"}.ai1wm-icon-publish:before{content:"\e602"}.ai1wm-icon-paperplane:before{content:"\e608"}.ai1wm-icon-help:before{content:"\e609"}.ai1wm-icon-chevron-right:before{content:"\e60d"}.ai1wm-icon-dropbox:before{content:"\e606"}.ai1wm-icon-gear:before{content:"\e60a"}.ai1wm-icon-database:before{content:"\e964"}.ai1wm-icon-upload2:before{content:"\e9c6"}.ai1wm-icon-checkmark:before{content:"\ea10"}.ai1wm-icon-checkmark2:before{content:"\ea11"}.ai1wm-icon-enter:before{content:"\ea13"}.ai1wm-icon-exit:before{content:"\ea14"}.ai1wm-icon-amazon:before{content:"\ea87"}.ai1wm-icon-onedrive:before{content:"\eaaf"}.ai1wm-icon-alone{margin:0!important}@media (min-width:855px){.ai1wm-row{margin-right:399px}.ai1wm-row:after,.ai1wm-row:before{content:" ";display:table}.ai1wm-row:after{clear:both}.ai1wm-left{float:left;width:100%}.ai1wm-right{float:right;width:377px;margin-right:-399px}.ai1wm-right .ai1wm-sidebar{width:100%}.ai1wm-right .ai1wm-segment{width:333px;border:1px solid #d6d6d6;border-radius:3px;box-shadow:inset 0 1px 0 0 #fff;color:#333;background-color:#f9f9f9;padding:20px;text-decoration:none;text-shadow:0 1px 0 #fff;background-clip:padding-box}.ai1wm-right .ai1wm-segment h2{margin:22px 0 0;padding:0;font-weight:700;font-size:14px;text-transform:uppercase;text-align:center}.ai1wm-right .ai1wm-feedback-email{width:100%;font-weight:400;font-size:.8rem;height:2.3rem;line-height:2.3rem;border-radius:5px;margin-bottom:4px;padding:0 10px}.ai1wm-right .ai1wm-feedback-message{width:100%;border-radius:3px;font-size:.8rem;padding:6px 10px;resize:none}.ai1wm-right .ai1wm-feedback-terms-segment{font-size:.7rem;line-height:1rem;margin:4px 0 8px}.ai1wm-right .ai1wm-feedback-terms-segment>.ai1wm-feedback-terms{border-radius:3px}}.ai1wm-holder{position:relative;border:1px solid #d6d6d6;border-radius:3px;box-shadow:inset 0 1px 0 0 #fff;padding:20px;background:#f9f9f9}.ai1wm-holder h1{margin:0;padding:0;float:left;font-weight:300;font-size:22px;text-transform:uppercase}.ai1wm-holder h1 i{position:relative;top:2px}@media (max-width:854px){.ai1wm-container{margin-left:10px!important}.ai1wm-right,.ai1wm-row{margin-right:0!important}.ai1wm-right{float:left!important;width:100%!important;margin-top:18px}.ai1wm-right .ai1wm-sidebar{width:auto!important;border:1px solid #d6d6d6;border-radius:3px;box-shadow:inset 0 1px 0 0 #fff;padding:20px;background:#f9f9f9}.ai1wm-right .ai1wm-feedback-email{width:100%;font-weight:400;font-size:.8rem;height:2.3rem;line-height:2.3rem;border-radius:5px;margin-bottom:4px;padding:0 10px}.ai1wm-right .ai1wm-feedback-message{width:100%;border-radius:3px;font-size:.8rem;padding:6px 10px;resize:none}.ai1wm-right .ai1wm-feedback-terms-segment{font-size:.7rem;line-height:1rem;margin:4px 0 8px;border-radius:3px}.ai1wm-right .ai1wm-feedback-terms-segment>.ai1wm-feedback-terms{border-radius:3px}}.ai1wm-container{margin:20px 20px 0 2px}.ai1wm-container:after,.ai1wm-container:before{content:" ";display:table}.ai1wm-container:after{clear:both}.ai1wm-replace-row{width:100%;box-shadow:outset 0 1px 0 0 white;border-radius:3px;color:#333;font-size:11px;font-weight:700;background-color:#f9f9f9;text-decoration:none;text-shadow:0 1px 0 #fff;background-clip:padding-box;margin-bottom:10px}.ai1wm-replace-row .ai1wm-field-inline{float:left;width:100%}.ai1wm-replace-row .ai1wm-field-inline input{width:100%;font-weight:400;font-size:.8rem;padding:0 10px;height:2.3rem;line-height:2.3rem;margin-bottom:4px}.ai1wm-field{margin-bottom:4px}.ai1wm-field input[type=text],.ai1wm-field textarea{width:100%;font-weight:400}.ai1wm-field-set{margin-top:18px}.ai1wm-message{-moz-box-sizing:border-box;background-color:#efefef;border-radius:4px;color:rgba(0,0,0,.6);height:auto;margin:10px 0;min-height:18px;padding:6px 10px;position:relative;border:1px solid;transition:opacity .1s ease 0s,color .1s ease 0s,background .1s ease 0s,box-shadow .1s ease 0s}.ai1wm-message.ai1wm-success-message{background-color:#f2f8f0;color:#119000;font-size:12px}.ai1wm-message.ai1wm-info-message{background-color:#d9edf7;color:#31708f;font-size:11px}.ai1wm-message.ai1wm-error-message{background-color:#f1d7d7;color:#a95252;font-size:12px}.ai1wm-message.ai1wm-red-message{color:#d95c5c;border:2px solid #d95c5c;background-color:transparent}.ai1wm-message.ai1wm-red-message h3{margin:.4em 0;color:#d95c5c}.ai1wm-message p{margin:4px 0;font-size:12px}.ai1wm-message-warning{display:block;font-size:14px;line-height:18px;padding:12px 20px;margin:0 0 22px;background-color:#f9f9f9;border:1px solid #d6d6d6;border-radius:3px;box-shadow:0 1px 0 0 #fff inset;border-left:4px solid #ffba00}.ai1wm-button-group{border:2px solid #27ae60;background-color:transparent;color:#27ae60;border-radius:5px;cursor:pointer;text-transform:uppercase;font-weight:600;transition:background-color .2s ease-out;display:inline-block;text-align:left}.ai1wm-button-group.ai1wm-button-export,.ai1wm-button-group.ai1wm-button-import{box-sizing:content-box}.ai1wm-button-group.ai1wm-button-export.ai1wm-open>.ai1wm-dropdown-menu{height:260px;border-top:1px solid #27ae60}.ai1wm-button-group.ai1wm-button-import.ai1wm-open>.ai1wm-dropdown-menu{height:288px;border-top:1px solid #27ae60}.ai1wm-button-group .ai1wm-button-main{position:relative;padding:6px 50px 6px 25px;box-sizing:content-box}.ai1wm-button-group .ai1wm-dropdown-menu{height:0;overflow:hidden;transition:height .2s cubic-bezier(.19,1,.22,1);border-top:none}.ai1wm-dropdown-menu{list-style:none}.ai1wm-dropdown-menu,.ai1wm-dropdown-menu li{margin:0!important;padding:0}.ai1wm-dropdown-menu li a,.ai1wm-dropdown-menu li a:visited{display:block;margin:10px 0;padding:0 26px;text-decoration:none;color:#27ae60;text-align:left;box-sizing:content-box}.ai1wm-dropdown-menu li a:hover,.ai1wm-dropdown-menu li a:visited:hover{text-decoration:none;color:#111}.ai1mw-lines,.ai1wm-line{display:inline-block;position:absolute}.ai1mw-lines{top:9px;right:20px;width:12px;height:10px}.ai1wm-line{width:100%;height:2px;margin:auto;background:#27ae60;transition:all .2s ease-in-out}.ai1wm-line-first{top:0;left:0}div.ai1wm-open .ai1wm-line-first,div.ai1wm-open .ai1wm-line-third{top:50%}.ai1wm-line-second{top:50%;left:0}.ai1wm-line-third{top:100%;left:0}.ai1wm-button-blue,.ai1wm-button-gray,.ai1wm-button-green,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #95a5a6;background-color:transparent;color:#95a5a6;border-radius:5px;cursor:pointer;padding:5px 25px 5px 26px;text-transform:uppercase;font-weight:600;outline:0;transition:background-color .2s ease-out;text-decoration:none}.ai1wm-button-gray:hover{background-color:#95a5a6;color:#fff}.ai1wm-button-blue,.ai1wm-button-green,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #27ae60;color:#27ae60}.ai1wm-button-green:hover{background-color:#27ae60;color:#fff}.ai1wm-button-blue,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #6eb649;color:#6eb649}.ai1wm-button-green-small:hover{background-color:#6eb649;color:#fff}.ai1wm-button-blue,.ai1wm-button-red{border:2px solid #00aff0;color:#00aff0}.ai1wm-button-blue:hover{background-color:#00aff0;color:#fff}.ai1wm-button-red{border:2px solid #e74c3c;color:#e74c3c}.ai1wm-button-red:hover{background-color:#e74c3c;color:#fff}.ai1wm-button-alone{border-radius:50px!important;padding:5px 8px!important}.ai1wm-button-blue[disabled=disabled],.ai1wm-button-green-small[disabled=disabled],.ai1wm-button-green[disabled=disabled],.ai1wm-button-red[disabled=disabled]{opacity:.6;cursor:default}.ai1wm-button-blue[disabled=disabled]:hover{color:#00aff0}.ai1wm-button-red[disabled=disabled]:hover{color:#e74c3c}.ai1wm-button-green[disabled=disabled]:hover{color:#27ae60}.ai1wm-button-blue[disabled=disabled]:hover,.ai1wm-button-green-small[disabled=disabled]:hover,.ai1wm-button-green[disabled=disabled]:hover,.ai1wm-button-red[disabled=disabled]:hover{background:0 0}.ai1wm-button-blue i,.ai1wm-button-gray i,.ai1wm-button-green i,.ai1wm-button-red i{margin-left:-.5em;margin-right:.2em}.ai1wm-message-close-button{position:absolute;right:10px;top:6px;text-decoration:none;font-size:10px}input[type=radio].ai1wm-flat-radio-button{display:none}input[type=radio].ai1wm-flat-radio-button+a i,input[type=radio].ai1wm-flat-radio-button+label i{vertical-align:middle;float:left;width:25px;height:25px;border-radius:50%;background:0 0;border:2px solid #ccc;content:" ";cursor:pointer;position:relative;box-sizing:content-box}input[type=radio].ai1wm-flat-radio-button:checked+a i,input[type=radio].ai1wm-flat-radio-button:checked+label i{background-color:#d9d9d9;border-color:#6f6f6f}.ai1wm-clear{*zoom:1;clear:both}.ai1wm-clear:after,.ai1wm-clear:before{content:" ";display:table}.ai1wm-clear:after{clear:both}.ai1wm-list-expanded{display:block!important}.ai1wm-field-inline input{border-radius:5px}.ai1wm-container .ai1wm-row label{position:relative;top:-1px}.ai1wm-share-button-container{text-align:center}.ai1wm-share-button-container .ai1wm-share-button{text-decoration:none;margin:10px;font-size:30px}.ai1wm-report-problem{position:relative;float:right}.ai1wm-report-problem-dialog{position:absolute;z-index:999;width:280px;right:0;background-color:#fff;margin:6px 0 0;padding:15px 15px 10px;border:1px solid #d6d6d6;border-radius:3px;box-shadow:0 1px 0 0 #fff inset;display:none}.ai1wm-report-email{width:100%;font-weight:400;font-size:.8rem;height:2.3rem;line-height:2.3rem;border-radius:5px;margin-bottom:4px;padding:0 10px}.ai1wm-report-message{width:100%;border-radius:3px;font-size:.8rem;padding:6px 10px;resize:none}.ai1wm-feedback-cancel:active,.ai1wm-feedback-cancel:link,.ai1wm-feedback-cancel:visited,.ai1wm-report-cancel:active,.ai1wm-report-cancel:link,.ai1wm-report-cancel:visited{float:left;line-height:34px;outline:0;text-decoration:none;color:#e74c3c}.ai1wm-form-submit{float:right}.ai1wm-report-active{display:block}.ai1wm-report-terms-segment{font-size:.7rem;line-height:1rem;margin:4px 0 8px}.ai1wm-report-terms-segment>.ai1wm-report-terms{border-radius:3px}.ai1wm-import-info a,.ai1wm-no-underline,.ai1wm-unlimited-import a{text-decoration:none}.ai1wm-top-negative-four{top:-4px}.ai1wm-feedback-form{display:none}.ai1wm-feedback-types{margin:0;padding:0;list-style:none}.ai1wm-feedback-types li{margin:14px 0;padding:0}.ai1wm-feedback-types>li>a>span,.ai1wm-feedback-types>li>label>span{display:inline-block;padding:5px 0 6px 8px}.ai1wm-feedback-types>li>a{height:29px;outline:0;color:#333;text-deciration:none}.ai1wm-loader{display:inline-block;width:128px;height:128px;position:relative;-webkit-animation:ai1wm-rotate 1.5s infinite linear;animation:ai1wm-rotate 1.5s infinite linear;background:url(../img/logo-128x128.png);background-repeat:no-repeat;background-position:center center}.ai1wm-hide,div.ai1wm-expandable input{display:none}.ai1wm-label{border:1px solid #5cb85c;background-color:transparent;color:#5cb85c;cursor:pointer;text-transform:uppercase;font-weight:600;outline:0;transition:background-color .2s ease-out;padding:.2em .6em;font-size:.8em;border-radius:5px}.ai1wm-label:hover{background-color:#5cb85c;color:#fff}.ai1wm-dialog-message{text-align:left;line-height:1.5em}.ai1wm-overlay{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);z-index:100001}.ai1wm-modal-container{position:fixed;display:none;top:50%;left:50%;z-index:100002;width:480px;height:auto;padding:16px;-webkit-transform:translate(-240px,-94px);transform:translate(-240px,-94px);border:1px solid #fff;box-shadow:0 2px 6px #292929;border-radius:6px;background:#f6f6f6;box-sizing:border-box;text-align:center}.ai1wm-modal-container section{display:block;min-height:102px}.ai1wm-modal-container section h1{margin:0;padding:0}.ai1wm-modal-container section h1 .ai1wm-title-green{color:#27ae60;font-size:20px}.ai1wm-modal-container section h1 .ai1wm-title-red{color:#e74c3c;font-size:20px}.ai1wm-modal-container section h1 .ai1wm-title-grey{color:gray;font-size:20px}.ai1wm-modal-container section h1 .ai1wm-loader{width:32px;height:32px;background:url(../img/logo-32x32.png)}.ai1wm-modal-container section h1 .ai1wm-icon-notification{font-size:1.2em;color:#e74c3c}.ai1wm-modal-container section p{margin:0;padding:12px 0}.ai1wm-modal-container section p .ai1wm-modal-sites p{padding:4px 10px;text-align:left}.ai1wm-modal-container section p .ai1wm-modal-sites input,.ai1wm-modal-container section p .ai1wm-modal-sites select{padding:0 6px;width:100%;border-radius:3px;height:30px;line-height:30px}.ai1wm-modal-container section p .ai1wm-modal-subtitle-green{color:#27ae60}.ai1wm-modal-container section p .ai1wm-modal-subtitle-red{color:#e74c3c}.ai1wm-modal-container section p .ai1wm-modal-subdescription{display:block;text-align:left}.ai1wm-modal-container section p a.ai1wm-button-green{display:inline-block;position:relative;top:26px}.ai1wm-modal-container section p a.ai1wm-emphasize{-webkit-animation:ai1wm-emphasize 1s infinite;animation:ai1wm-emphasize 1s infinite}.ai1wm-modal-container section p em{display:block;color:#34495e;font-style:normal}.ai1wm-modal-container section p.ai1wm-import-modal-content{text-align:left}.ai1wm-modal-container .ai1wm-import-modal-actions{border-top:1px solid #ccc;padding-top:1em;text-align:right}.ai1wm-modal-container .ai1wm-import-modal-actions .ai1wm-button-gray{margin-right:1em}.ai1wm-modal-container .ai1wm-import-modal-notice{border-top:1px solid #ccc}.ai1wm-modal-container .ai1wm-import-modal-notice p{font-weight:700;margin:0;padding-top:16px;text-align:center}.ai1wm-growl-info{position:fixed;z-index:200000;top:0;margin-top:16px;right:16px;width:200px;padding:16px;background:#f1c40f;border:1px solid #e67e22;border-radius:5px;color:#111}.ai1wm-drag-drop-area{border:3px dashed #ddd;height:200px;margin:20px 0 16px;background:#fff;text-align:center;border-radius:30px}.ai1wm-drag-drop-area>*{pointer-events:none}div.ai1wm-expandable.ai1wm-open input{display:inline-block}#ai1wm-import-file>input{position:absolute;-webkit-transform:translate(-51px,-6px);transform:translate(-51px,-6px);width:158px;height:29px;cursor:pointer;opacity:0;z-index:9999;padding:0;margin:0}#ai1wm-import-file>input::-webkit-file-upload-button{cursor:pointer}.ai1wm-drag-drop-area.dragover{background:rgba(255,255,255,.4);border-color:green}.ai1wm-drag-over.ai1wm-drag-drop-area{border-color:#83b4d8}.ai1wm-import-form{position:relative}#ai1wm-import-init{position:absolute;top:10px;left:10%;width:80%;text-align:center}#ai1wm-import-init p{font-size:18px;color:#9e9e9e}#ai1wm-import-init p i{font-size:46px}#ai1wm-import-init div.ai1wm-button-import{pointer-events:all}.ai1wm-max-upload-size{border-bottom:1px solid #000}.ai1wm-progress-bar{position:relative;display:inline-block;background-color:#bdc3c7;height:32px;width:100%;border-radius:15px;top:35px}.ai1wm-progress-bar-meter,.ai1wm-progress-bar-percent{display:inline-block;float:left;height:32px;line-height:32px;color:#fff}.ai1wm-progress-bar-meter{background-color:#2ecc71;border-radius:15px;text-align:center;width:0}.ai1wm-progress-bar-percent{position:absolute;width:50px;left:50%;-webkit-transform:translate(-24px,0);transform:translate(-24px,0);font-size:.5em;background:0 0}.ai1wm-import-info{display:inline-block;font-size:12px;font-weight:700;margin-top:16px}
|
lib/view/assets/css/updater.min.css
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
@charset "UTF-8";.ai1wm-button-group{border:2px solid #27ae60;background-color:transparent;color:#27ae60;border-radius:5px;cursor:pointer;text-transform:uppercase;font-weight:600;transition:background-color .2s ease-out;display:inline-block;text-align:left}.ai1wm-button-group.ai1wm-button-export,.ai1wm-button-group.ai1wm-button-import{box-sizing:content-box}.ai1wm-button-group.ai1wm-button-export.ai1wm-open>.ai1wm-dropdown-menu{height:
|
| 1 |
+
@charset "UTF-8";.ai1wm-button-group{border:2px solid #27ae60;background-color:transparent;color:#27ae60;border-radius:5px;cursor:pointer;text-transform:uppercase;font-weight:600;transition:background-color .2s ease-out;display:inline-block;text-align:left}.ai1wm-button-group.ai1wm-button-export,.ai1wm-button-group.ai1wm-button-import{box-sizing:content-box}.ai1wm-button-group.ai1wm-button-export.ai1wm-open>.ai1wm-dropdown-menu{height:260px;border-top:1px solid #27ae60}.ai1wm-button-group.ai1wm-button-import.ai1wm-open>.ai1wm-dropdown-menu{height:288px;border-top:1px solid #27ae60}.ai1wm-button-group .ai1wm-button-main{position:relative;padding:6px 50px 6px 25px;box-sizing:content-box}.ai1wm-button-group .ai1wm-dropdown-menu{height:0;overflow:hidden;transition:height .2s cubic-bezier(.19,1,.22,1);border-top:none}.ai1wm-dropdown-menu{list-style:none}.ai1wm-dropdown-menu,.ai1wm-dropdown-menu li{margin:0!important;padding:0}.ai1wm-dropdown-menu li a,.ai1wm-dropdown-menu li a:visited{display:block;margin:10px 0;padding:0 26px;text-decoration:none;color:#27ae60;text-align:left;box-sizing:content-box}.ai1wm-dropdown-menu li a:hover,.ai1wm-dropdown-menu li a:visited:hover{text-decoration:none;color:#111}.ai1mw-lines,.ai1wm-line{display:inline-block;position:absolute}.ai1mw-lines{top:9px;right:20px;width:12px;height:10px}.ai1wm-line{width:100%;height:2px;margin:auto;background:#27ae60;transition:all .2s ease-in-out}.ai1wm-line-first{top:0;left:0}div.ai1wm-open .ai1wm-line-first,div.ai1wm-open .ai1wm-line-third{top:50%}.ai1wm-line-second{top:50%;left:0}.ai1wm-line-third{top:100%;left:0}.ai1wm-button-blue,.ai1wm-button-gray,.ai1wm-button-green,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #95a5a6;background-color:transparent;color:#95a5a6;border-radius:5px;cursor:pointer;padding:5px 25px 5px 26px;text-transform:uppercase;font-weight:600;outline:0;transition:background-color .2s ease-out;text-decoration:none}.ai1wm-button-gray:hover{background-color:#95a5a6;color:#fff}.ai1wm-button-blue,.ai1wm-button-green,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #27ae60;color:#27ae60}.ai1wm-button-green:hover{background-color:#27ae60;color:#fff}.ai1wm-button-blue,.ai1wm-button-green-small,.ai1wm-button-red{border:2px solid #6eb649;color:#6eb649}.ai1wm-button-green-small:hover{background-color:#6eb649;color:#fff}.ai1wm-button-blue,.ai1wm-button-red{border:2px solid #00aff0;color:#00aff0}.ai1wm-button-blue:hover{background-color:#00aff0;color:#fff}.ai1wm-button-red{border:2px solid #e74c3c;color:#e74c3c}.ai1wm-button-red:hover{background-color:#e74c3c;color:#fff}.ai1wm-button-alone{border-radius:50px!important;padding:5px 8px!important}.ai1wm-button-blue[disabled=disabled],.ai1wm-button-green-small[disabled=disabled],.ai1wm-button-green[disabled=disabled],.ai1wm-button-red[disabled=disabled]{opacity:.6;cursor:default}.ai1wm-button-blue[disabled=disabled]:hover{color:#00aff0}.ai1wm-button-red[disabled=disabled]:hover{color:#e74c3c}.ai1wm-button-green[disabled=disabled]:hover{color:#27ae60}.ai1wm-button-blue[disabled=disabled]:hover,.ai1wm-button-green-small[disabled=disabled]:hover,.ai1wm-button-green[disabled=disabled]:hover,.ai1wm-button-red[disabled=disabled]:hover{background:0 0}.ai1wm-button-blue i,.ai1wm-button-gray i,.ai1wm-button-green i,.ai1wm-button-red i{margin-left:-.5em;margin-right:.2em}.ai1wm-message-close-button{position:absolute;right:10px;top:6px;text-decoration:none;font-size:10px}input[type=radio].ai1wm-flat-radio-button{display:none}input[type=radio].ai1wm-flat-radio-button+a i,input[type=radio].ai1wm-flat-radio-button+label i{vertical-align:middle;float:left;width:25px;height:25px;border-radius:50%;background:0 0;border:2px solid #ccc;content:" ";cursor:pointer;position:relative;box-sizing:content-box}input[type=radio].ai1wm-flat-radio-button:checked+a i,input[type=radio].ai1wm-flat-radio-button:checked+label i{background-color:#d9d9d9;border-color:#6f6f6f}.ai1wm-icon-update{font-size:13px;padding:0;margin:0;font-weight:400}.ai1wm-icon-update:before{color:#d54e21;content:'\f463';display:inline-block;font:20px/1 'dashicons';speak:none;padding:0;margin:0;vertical-align:top}.ai1wm-modal-dialog{position:fixed;top:0;right:0;bottom:0;left:0;background:rgba(0,0,0,.7);z-index:99999;opacity:0;transition:opacity 400ms ease-in;pointer-events:none}.ai1wm-modal-dialog:target{opacity:1;pointer-events:auto}.ai1wm-modal-dialog .ai1wm-modal-container{position:fixed;top:50%;left:50%;z-index:100002;width:480px;height:auto;padding:6px 16px 10px;-webkit-transform:translate(-240px,-94px);transform:translate(-240px,-94px);border:1px solid #fff;box-shadow:0 2px 6px #292929;border-radius:6px;background:#f6f6f6;box-sizing:border-box}.ai1wm-modal-dialog .ai1wm-modal-container .ai1wm-modal-error{color:red}.ai1wm-modal-dialog .ai1wm-modal-container .ai1wm-modal-buttons{text-align:left}.ai1wm-modal-dialog .ai1wm-modal-container .ai1wm-purchase-id{width:100%;padding:6px}.ai1wm-modal-dialog .ai1wm-modal-container .ai1wm-help-link{font-weight:700}.ai1wm-modal-dialog .ai1wm-modal-container .ai1wm-purchase-discard{margin-left:1em}
|
lib/view/assets/javascript/backups.min.js
CHANGED
|
@@ -263,6 +263,7 @@ Import.prototype.start = function (options, retries) {
|
|
| 263 |
if (retries >= 5) {
|
| 264 |
return self.setStatus({
|
| 265 |
type: 'error',
|
|
|
|
| 266 |
message: 'Unable to start the import. Refresh the page and try again'
|
| 267 |
});
|
| 268 |
}
|
|
@@ -341,6 +342,7 @@ Import.prototype.confirm = function (options, retries) {
|
|
| 341 |
if (retries >= 5) {
|
| 342 |
return self.setStatus({
|
| 343 |
type: 'error',
|
|
|
|
| 344 |
message: 'Unable to confirm the import. Refresh the page and try again'
|
| 345 |
});
|
| 346 |
}
|
|
@@ -388,6 +390,7 @@ Import.prototype.blogs = function (options, retries) {
|
|
| 388 |
if (retries >= 5) {
|
| 389 |
return self.setStatus({
|
| 390 |
type: 'error',
|
|
|
|
| 391 |
message: 'Unable to prepare blogs the import. Refresh the page and try again'
|
| 392 |
});
|
| 393 |
}
|
|
@@ -436,6 +439,7 @@ Import.prototype.clean = function (options, retries) {
|
|
| 436 |
if (retries >= 5) {
|
| 437 |
return self.setStatus({
|
| 438 |
type: 'error',
|
|
|
|
| 439 |
message: 'Unable to stop the import. Refresh the page and try again'
|
| 440 |
});
|
| 441 |
}
|
|
@@ -563,7 +567,7 @@ var Modal = function Modal() {
|
|
| 563 |
var action = $('<div></div>');
|
| 564 |
|
| 565 |
// Create title
|
| 566 |
-
var title = $('<span></span>').addClass('ai1wm-title-red').text(
|
| 567 |
|
| 568 |
// Create close button
|
| 569 |
var closeButton = $('<button type="button" class="ai1wm-button-red">Close</button>').on('click', function () {
|
| 263 |
if (retries >= 5) {
|
| 264 |
return self.setStatus({
|
| 265 |
type: 'error',
|
| 266 |
+
title: 'Unable to import',
|
| 267 |
message: 'Unable to start the import. Refresh the page and try again'
|
| 268 |
});
|
| 269 |
}
|
| 342 |
if (retries >= 5) {
|
| 343 |
return self.setStatus({
|
| 344 |
type: 'error',
|
| 345 |
+
title: 'Unable to import',
|
| 346 |
message: 'Unable to confirm the import. Refresh the page and try again'
|
| 347 |
});
|
| 348 |
}
|
| 390 |
if (retries >= 5) {
|
| 391 |
return self.setStatus({
|
| 392 |
type: 'error',
|
| 393 |
+
title: 'Unable to import',
|
| 394 |
message: 'Unable to prepare blogs the import. Refresh the page and try again'
|
| 395 |
});
|
| 396 |
}
|
| 439 |
if (retries >= 5) {
|
| 440 |
return self.setStatus({
|
| 441 |
type: 'error',
|
| 442 |
+
title: 'Unable to import',
|
| 443 |
message: 'Unable to stop the import. Refresh the page and try again'
|
| 444 |
});
|
| 445 |
}
|
| 567 |
var action = $('<div></div>');
|
| 568 |
|
| 569 |
// Create title
|
| 570 |
+
var title = $('<span></span>').addClass('ai1wm-title-red').text(params.title);
|
| 571 |
|
| 572 |
// Create close button
|
| 573 |
var closeButton = $('<button type="button" class="ai1wm-button-red">Close</button>').on('click', function () {
|
lib/view/assets/javascript/export.min.js
CHANGED
|
@@ -621,6 +621,7 @@ Export.prototype.start = function (options, retries) {
|
|
| 621 |
if (retries >= 5) {
|
| 622 |
return self.setStatus({
|
| 623 |
type: 'error',
|
|
|
|
| 624 |
message: 'Unable to start the export. Refresh the page and try again'
|
| 625 |
});
|
| 626 |
}
|
|
@@ -658,6 +659,7 @@ Export.prototype.run = function (params, retries) {
|
|
| 658 |
if (retries >= 5) {
|
| 659 |
return self.setStatus({
|
| 660 |
type: 'error',
|
|
|
|
| 661 |
message: 'Unable to run the export. Refresh the page and try again'
|
| 662 |
});
|
| 663 |
}
|
|
@@ -706,6 +708,7 @@ Export.prototype.clean = function (options, retries) {
|
|
| 706 |
if (retries >= 5) {
|
| 707 |
return self.setStatus({
|
| 708 |
type: 'error',
|
|
|
|
| 709 |
message: 'Unable to stop the export. Refresh the page and try again'
|
| 710 |
});
|
| 711 |
}
|
|
@@ -821,7 +824,7 @@ var Modal = function Modal() {
|
|
| 821 |
var action = $('<div></div>');
|
| 822 |
|
| 823 |
// Create title
|
| 824 |
-
var title = $('<span></span>').addClass('ai1wm-title-red').text(
|
| 825 |
|
| 826 |
// Create close button
|
| 827 |
var closeButton = $('<button type="button" class="ai1wm-button-red">Close</button>').on('click', function () {
|
| 621 |
if (retries >= 5) {
|
| 622 |
return self.setStatus({
|
| 623 |
type: 'error',
|
| 624 |
+
title: 'Unable to export',
|
| 625 |
message: 'Unable to start the export. Refresh the page and try again'
|
| 626 |
});
|
| 627 |
}
|
| 659 |
if (retries >= 5) {
|
| 660 |
return self.setStatus({
|
| 661 |
type: 'error',
|
| 662 |
+
title: 'Unable to export',
|
| 663 |
message: 'Unable to run the export. Refresh the page and try again'
|
| 664 |
});
|
| 665 |
}
|
| 708 |
if (retries >= 5) {
|
| 709 |
return self.setStatus({
|
| 710 |
type: 'error',
|
| 711 |
+
title: 'Unable to export',
|
| 712 |
message: 'Unable to stop the export. Refresh the page and try again'
|
| 713 |
});
|
| 714 |
}
|
| 824 |
var action = $('<div></div>');
|
| 825 |
|
| 826 |
// Create title
|
| 827 |
+
var title = $('<span></span>').addClass('ai1wm-title-red').text(params.title);
|
| 828 |
|
| 829 |
// Create close button
|
| 830 |
var closeButton = $('<button type="button" class="ai1wm-button-red">Close</button>').on('click', function () {
|
lib/view/assets/javascript/import.min.js
CHANGED
|
@@ -729,6 +729,7 @@ Import.prototype.start = function (options, retries) {
|
|
| 729 |
if (retries >= 5) {
|
| 730 |
return self.setStatus({
|
| 731 |
type: 'error',
|
|
|
|
| 732 |
message: 'Unable to start the import. Refresh the page and try again'
|
| 733 |
});
|
| 734 |
}
|
|
@@ -807,6 +808,7 @@ Import.prototype.confirm = function (options, retries) {
|
|
| 807 |
if (retries >= 5) {
|
| 808 |
return self.setStatus({
|
| 809 |
type: 'error',
|
|
|
|
| 810 |
message: 'Unable to confirm the import. Refresh the page and try again'
|
| 811 |
});
|
| 812 |
}
|
|
@@ -854,6 +856,7 @@ Import.prototype.blogs = function (options, retries) {
|
|
| 854 |
if (retries >= 5) {
|
| 855 |
return self.setStatus({
|
| 856 |
type: 'error',
|
|
|
|
| 857 |
message: 'Unable to prepare blogs the import. Refresh the page and try again'
|
| 858 |
});
|
| 859 |
}
|
|
@@ -902,6 +905,7 @@ Import.prototype.clean = function (options, retries) {
|
|
| 902 |
if (retries >= 5) {
|
| 903 |
return self.setStatus({
|
| 904 |
type: 'error',
|
|
|
|
| 905 |
message: 'Unable to stop the import. Refresh the page and try again'
|
| 906 |
});
|
| 907 |
}
|
|
@@ -1028,7 +1032,7 @@ var Modal = function Modal() {
|
|
| 1028 |
var action = $('<div></div>');
|
| 1029 |
|
| 1030 |
// Create title
|
| 1031 |
-
var title = $('<span></span>').addClass('ai1wm-title-red').text(
|
| 1032 |
|
| 1033 |
// Create close button
|
| 1034 |
var closeButton = $('<button type="button" class="ai1wm-button-red">Close</button>').on('click', function () {
|
|
@@ -2234,7 +2238,7 @@ FileUploader.prototype.onFileUploaded = function () {
|
|
| 2234 |
};
|
| 2235 |
|
| 2236 |
FileUploader.prototype.onError = function (error) {
|
| 2237 |
-
this.model.setStatus({ type: 'error', message: error.message });
|
| 2238 |
};
|
| 2239 |
|
| 2240 |
module.exports = FileUploader;
|
| 729 |
if (retries >= 5) {
|
| 730 |
return self.setStatus({
|
| 731 |
type: 'error',
|
| 732 |
+
title: 'Unable to import',
|
| 733 |
message: 'Unable to start the import. Refresh the page and try again'
|
| 734 |
});
|
| 735 |
}
|
| 808 |
if (retries >= 5) {
|
| 809 |
return self.setStatus({
|
| 810 |
type: 'error',
|
| 811 |
+
title: 'Unable to import',
|
| 812 |
message: 'Unable to confirm the import. Refresh the page and try again'
|
| 813 |
});
|
| 814 |
}
|
| 856 |
if (retries >= 5) {
|
| 857 |
return self.setStatus({
|
| 858 |
type: 'error',
|
| 859 |
+
title: 'Unable to import',
|
| 860 |
message: 'Unable to prepare blogs the import. Refresh the page and try again'
|
| 861 |
});
|
| 862 |
}
|
| 905 |
if (retries >= 5) {
|
| 906 |
return self.setStatus({
|
| 907 |
type: 'error',
|
| 908 |
+
title: 'Unable to import',
|
| 909 |
message: 'Unable to stop the import. Refresh the page and try again'
|
| 910 |
});
|
| 911 |
}
|
| 1032 |
var action = $('<div></div>');
|
| 1033 |
|
| 1034 |
// Create title
|
| 1035 |
+
var title = $('<span></span>').addClass('ai1wm-title-red').text(params.title);
|
| 1036 |
|
| 1037 |
// Create close button
|
| 1038 |
var closeButton = $('<button type="button" class="ai1wm-button-red">Close</button>').on('click', function () {
|
| 2238 |
};
|
| 2239 |
|
| 2240 |
FileUploader.prototype.onError = function (error) {
|
| 2241 |
+
this.model.setStatus({ type: 'error', title: 'Unable to import', message: error.message });
|
| 2242 |
};
|
| 2243 |
|
| 2244 |
module.exports = FileUploader;
|
lib/view/export/button-digitalocean.php
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
| 1 |
+
<a href="https://servmask.com/products/digitalocean-extension" target="_blank"><?php _e( 'DigitalOcean', AI1WM_PLUGIN_NAME ); ?></a>
|
lib/view/import/button-digitalocean.php
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
| 1 |
+
<a href="https://servmask.com/products/digitalocean-extеnsion" target="_blank"><?php _e( 'DigitalOcean', AI1WM_PLUGIN_NAME ); ?></a>
|
loader.php
CHANGED
|
@@ -371,6 +371,14 @@ require_once AI1WM_MODEL_PATH .
|
|
| 371 |
DIRECTORY_SEPARATOR .
|
| 372 |
'class-ai1wm-log.php';
|
| 373 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 374 |
require_once AI1WM_MODEL_PATH .
|
| 375 |
DIRECTORY_SEPARATOR .
|
| 376 |
'class-ai1wm-handler.php';
|
| 371 |
DIRECTORY_SEPARATOR .
|
| 372 |
'class-ai1wm-log.php';
|
| 373 |
|
| 374 |
+
require_once AI1WM_MODEL_PATH .
|
| 375 |
+
DIRECTORY_SEPARATOR .
|
| 376 |
+
'class-ai1wm-message.php';
|
| 377 |
+
|
| 378 |
+
require_once AI1WM_MODEL_PATH .
|
| 379 |
+
DIRECTORY_SEPARATOR .
|
| 380 |
+
'class-ai1wm-notification.php';
|
| 381 |
+
|
| 382 |
require_once AI1WM_MODEL_PATH .
|
| 383 |
DIRECTORY_SEPARATOR .
|
| 384 |
'class-ai1wm-handler.php';
|
readme.txt
CHANGED
|
@@ -3,7 +3,7 @@ Contributors: yani.iliev, bangelov, pimjitsawang
|
|
| 3 |
Tags: move, transfer, copy, migrate, backup, clone, restore, db migration, wordpress migration, website migration, database export, database import, apoyo, sauvegarde, di riserva, バックアップ
|
| 4 |
Requires at least: 3.3
|
| 5 |
Tested up to: 4.9
|
| 6 |
-
Stable tag: 6.
|
| 7 |
License: GPLv2 or later
|
| 8 |
|
| 9 |
Move, transfer, copy, migrate, and backup a site with 1-click. Quick, easy, and reliable.
|
|
@@ -53,6 +53,7 @@ Mobile device compatible: All in One WP Plugin is the first plugin to offer true
|
|
| 53 |
* [OneDrive](https://servmask.com/products/onedrive-extension)
|
| 54 |
* [Box](https://servmask.com/products/box-extension)
|
| 55 |
* [Mega](https://servmask.com/products/mega-extension)
|
|
|
|
| 56 |
|
| 57 |
= Supported hosting providers =
|
| 58 |
**The plugin does not have any dependancies, making it compatible with all PHP hosting providers. We support a vast range of hosting providers. Some of the most popular include:**
|
|
@@ -94,6 +95,16 @@ Alternatively you can download the plugin using the download button on this page
|
|
| 94 |
3. Plugin Menu
|
| 95 |
|
| 96 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 97 |
= 6.65 =
|
| 98 |
**Added**
|
| 99 |
|
| 3 |
Tags: move, transfer, copy, migrate, backup, clone, restore, db migration, wordpress migration, website migration, database export, database import, apoyo, sauvegarde, di riserva, バックアップ
|
| 4 |
Requires at least: 3.3
|
| 5 |
Tested up to: 4.9
|
| 6 |
+
Stable tag: 6.66
|
| 7 |
License: GPLv2 or later
|
| 8 |
|
| 9 |
Move, transfer, copy, migrate, and backup a site with 1-click. Quick, easy, and reliable.
|
| 53 |
* [OneDrive](https://servmask.com/products/onedrive-extension)
|
| 54 |
* [Box](https://servmask.com/products/box-extension)
|
| 55 |
* [Mega](https://servmask.com/products/mega-extension)
|
| 56 |
+
* [DigitalOcean](https://servmask.com/products/digitalocean-extension)
|
| 57 |
|
| 58 |
= Supported hosting providers =
|
| 59 |
**The plugin does not have any dependancies, making it compatible with all PHP hosting providers. We support a vast range of hosting providers. Some of the most popular include:**
|
| 95 |
3. Plugin Menu
|
| 96 |
|
| 97 |
== Changelog ==
|
| 98 |
+
= 6.66 =
|
| 99 |
+
**Added**
|
| 100 |
+
|
| 101 |
+
* Notification class for sending emails on error (export/import)
|
| 102 |
+
* Support for DigitalOcean Extension
|
| 103 |
+
|
| 104 |
+
**Fixed**
|
| 105 |
+
|
| 106 |
+
* Database regex pattern for parsing SQL queries
|
| 107 |
+
|
| 108 |
= 6.65 =
|
| 109 |
**Added**
|
| 110 |
|
