42 | * @copyright 2013 Yani Iliev
43 | * @license https://raw.github.com/yani-/bandar/master/LICENSE The MIT License (MIT)
44 | * @version Release: 2.0.1
45 | * @link https://github.com/yani-/bandar/
46 | */
47 | class TemplateDoesNotExistException extends Exception
48 | {
49 |
50 | }
51 |
--------------------------------------------------------------------------------
/lib/vendor/servmask/cron/class-ai1wm-cron.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 |
26 | class Ai1wm_Cron {
27 |
28 | /**
29 | * Schedules a hook which will be executed by the WordPress
30 | * actions core on a specific interval
31 | *
32 | * @param string $hook Event hook
33 | * @param string $recurrence How often the event should reoccur
34 | * @param array $args Arguments to pass to the hook function(s)
35 | * @return mixed
36 | */
37 | public static function add( $hook, $recurrence, $args = array() ) {
38 | $args = array_slice( func_get_args(), 2 );
39 | $schedules = wp_get_schedules();
40 |
41 | if ( isset( $schedules[ $recurrence ] ) && ( $current = $schedules[ $recurrence ] ) ) {
42 | return wp_schedule_event( time() + $current['interval'], $recurrence, $hook, $args );
43 | }
44 | }
45 |
46 | /**
47 | * Un-schedules all previously-scheduled cron jobs using a particular
48 | * hook name or a specific combination of hook name and arguments.
49 | *
50 | * @param string $hook Event hook
51 | * @return boolean
52 | */
53 | public static function clear( $hook ) {
54 | $cron = get_option( AI1WM_CRON, array() );
55 | if ( empty( $cron ) ) {
56 | return false;
57 | }
58 |
59 | foreach ( $cron as $timestamp => $hooks ) {
60 | if ( isset( $hooks[ $hook ] ) ) {
61 | unset( $cron[ $timestamp ][ $hook ] );
62 |
63 | // Unset empty timestamps
64 | if ( empty( $cron[ $timestamp ] ) ) {
65 | unset( $cron[ $timestamp ] );
66 | }
67 | }
68 | }
69 |
70 | return update_option( AI1WM_CRON, $cron );
71 | }
72 | }
73 |
--------------------------------------------------------------------------------
/lib/vendor/servmask/database/class-ai1wm-database-mysql.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 |
26 | class Ai1wm_Database_Mysql extends Ai1wm_Database {
27 |
28 | /**
29 | * Run MySQL query
30 | *
31 | * @param string $input SQL query
32 | * @return resource
33 | */
34 | public function query( $input ) {
35 | return mysql_query( $input, $this->wpdb->dbh );
36 | }
37 |
38 | /**
39 | * Escape string input for mysql query
40 | *
41 | * @param string $input String to escape
42 | * @return string
43 | */
44 | public function escape( $input ) {
45 | return mysql_real_escape_string( $input, $this->wpdb->dbh );
46 | }
47 |
48 | /**
49 | * Return the error code for the most recent function call
50 | *
51 | * @return integer
52 | */
53 | public function errno() {
54 | return mysql_errno( $this->wpdb->dbh );
55 | }
56 |
57 | /**
58 | * Return a string description of the last error
59 | *
60 | * @return string
61 | */
62 | public function error() {
63 | return mysql_error( $this->wpdb->dbh );
64 | }
65 |
66 | /**
67 | * Return server version
68 | *
69 | * @return string
70 | */
71 | public function version() {
72 | return mysql_get_server_info( $this->wpdb->dbh );
73 | }
74 |
75 | /**
76 | * Return the result from MySQL query as associative array
77 | *
78 | * @param resource $result MySQL resource
79 | * @return array
80 | */
81 | public function fetch_assoc( $result ) {
82 | return mysql_fetch_assoc( $result );
83 | }
84 |
85 | /**
86 | * Return the result from MySQL query as row
87 | *
88 | * @param resource $result MySQL resource
89 | * @return array
90 | */
91 | public function fetch_row( $result ) {
92 | return mysql_fetch_row( $result );
93 | }
94 |
95 | /**
96 | * Return the number for rows from MySQL results
97 | *
98 | * @param resource $result MySQL resource
99 | * @return integer
100 | */
101 | public function num_rows( $result ) {
102 | return mysql_num_rows( $result );
103 | }
104 |
105 | /**
106 | * Free MySQL result memory
107 | *
108 | * @param resource $result MySQL resource
109 | * @return boolean
110 | */
111 | public function free_result( $result ) {
112 | return mysql_free_result( $result );
113 | }
114 | }
115 |
--------------------------------------------------------------------------------
/lib/vendor/servmask/database/class-ai1wm-database-mysqli.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 |
26 | class Ai1wm_Database_Mysqli extends Ai1wm_Database {
27 |
28 | /**
29 | * Run MySQL query
30 | *
31 | * @param string $input SQL query
32 | * @return resource
33 | */
34 | public function query( $input ) {
35 | return mysqli_query( $this->wpdb->dbh, $input, MYSQLI_STORE_RESULT );
36 | }
37 |
38 | /**
39 | * Escape string input for mysql query
40 | *
41 | * @param string $input String to escape
42 | * @return string
43 | */
44 | public function escape( $input ) {
45 | return mysqli_real_escape_string( $this->wpdb->dbh, $input );
46 | }
47 |
48 | /**
49 | * Return the error code for the most recent function call
50 | *
51 | * @return integer
52 | */
53 | public function errno() {
54 | return mysqli_errno( $this->wpdb->dbh );
55 | }
56 |
57 | /**
58 | * Return a string description of the last error
59 | *
60 | * @return string
61 | */
62 | public function error() {
63 | return mysqli_error( $this->wpdb->dbh );
64 | }
65 |
66 | /**
67 | * Return server version
68 | *
69 | * @return string
70 | */
71 | public function version() {
72 | return mysqli_get_server_info( $this->wpdb->dbh );
73 | }
74 |
75 | /**
76 | * Return the result from MySQL query as associative array
77 | *
78 | * @param resource $result MySQL resource
79 | * @return array
80 | */
81 | public function fetch_assoc( $result ) {
82 | return mysqli_fetch_assoc( $result );
83 | }
84 |
85 | /**
86 | * Return the result from MySQL query as row
87 | *
88 | * @param resource $result MySQL resource
89 | * @return array
90 | */
91 | public function fetch_row( $result ) {
92 | return mysqli_fetch_row( $result );
93 | }
94 |
95 | /**
96 | * Return the number for rows from MySQL results
97 | *
98 | * @param resource $result MySQL resource
99 | * @return integer
100 | */
101 | public function num_rows( $result ) {
102 | return mysqli_num_rows( $result );
103 | }
104 |
105 | /**
106 | * Free MySQL result memory
107 | *
108 | * @param resource $result MySQL resource
109 | * @return boolean
110 | */
111 | public function free_result( $result ) {
112 | return mysqli_free_result( $result );
113 | }
114 | }
115 |
--------------------------------------------------------------------------------
/lib/vendor/servmask/filesystem/class-ai1wm-directory.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 |
26 | class Ai1wm_Directory {
27 |
28 | /**
29 | * Create directory (recursively)
30 | *
31 | * @param string $path Path to the directory
32 | * @return boolean
33 | */
34 | public static function create( $path ) {
35 | return @mkdir( $path, 0777, true );
36 | }
37 |
38 | /**
39 | * Delete directory (recursively)
40 | *
41 | * @param string $path Path to the directory
42 | * @return boolean
43 | */
44 | public static function delete( $path ) {
45 | // Iterate over directory
46 | $iterator = new Ai1wm_Recursive_Directory_Iterator( $path );
47 |
48 | // Recursively iterate over directory
49 | $iterator = new Ai1wm_Recursive_Iterator_Iterator( $iterator, RecursiveIteratorIterator::CHILD_FIRST, RecursiveIteratorIterator::CATCH_GET_CHILD );
50 |
51 | // Remove files and directories
52 | foreach ( $iterator as $item ) {
53 | if ( $item->isDir() ) {
54 | @rmdir( $item->getPathname() );
55 | } else {
56 | @unlink( $item->getPathname() );
57 | }
58 | }
59 |
60 | return @rmdir( $path );
61 | }
62 | }
63 |
--------------------------------------------------------------------------------
/lib/vendor/servmask/filesystem/class-ai1wm-file-htaccess.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 |
26 | class Ai1wm_File_Htaccess {
27 |
28 | /**
29 | * Create .htaccess file (ServMask)
30 | *
31 | * @param string $path Path to file
32 | * @return boolean
33 | */
34 | public static function create( $path ) {
35 | return Ai1wm_File::create( $path, implode( PHP_EOL, array(
36 | '',
37 | 'AddType application/octet-stream .wpress',
38 | ' ',
39 | '',
40 | 'DirectoryIndex index.php',
41 | ' ',
42 | '',
43 | 'Options -Indexes',
44 | ' ',
45 | ) ) );
46 | }
47 |
48 | /**
49 | * Create .htaccess file (LiteSpeed)
50 | *
51 | * @param string $path Path to file
52 | * @return boolean
53 | */
54 | public static function litespeed( $path ) {
55 | return Ai1wm_File::create_with_markers( $path, 'LiteSpeed', array(
56 | '',
57 | 'SetEnv noabort 1',
58 | ' ',
59 | ) );
60 | }
61 | }
62 |
--------------------------------------------------------------------------------
/lib/vendor/servmask/filesystem/class-ai1wm-file-index.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 |
26 | class Ai1wm_File_Index {
27 |
28 | /**
29 | * Create index.php file
30 | *
31 | * @param string $path Path to file
32 | * @return boolean
33 | */
34 | public static function create( $path ) {
35 | return Ai1wm_File::create( $path, '.
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 |
26 | class Ai1wm_File_Webconfig {
27 |
28 | /**
29 | * Create web.config file
30 | *
31 | * @param string $path Path to file
32 | * @return boolean
33 | */
34 | public static function create( $path ) {
35 | return Ai1wm_File::create( $path, implode( PHP_EOL, array(
36 | '',
37 | '',
38 | '',
39 | ' ',
40 | ' ',
41 | '',
42 | '',
43 | ' ',
44 | ' ',
45 | ' ',
46 | ' ',
47 | ' ',
48 | ' ',
49 | ) ) );
50 | }
51 | }
52 |
--------------------------------------------------------------------------------
/lib/vendor/servmask/filesystem/class-ai1wm-file.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 |
26 | class Ai1wm_File {
27 |
28 | /**
29 | * Create a file with content
30 | *
31 | * @param string $path Path to the file
32 | * @param string $content Content of the file
33 | * @return boolean
34 | */
35 | public static function create( $path, $content ) {
36 | if ( ! @file_exists( $path ) ) {
37 | if ( ! @is_writable( dirname( $path ) ) ) {
38 | return false;
39 | }
40 |
41 | if ( ! @touch( $path ) ) {
42 | return false;
43 | }
44 | } elseif ( ! @is_writable( $path ) ) {
45 | return false;
46 | }
47 |
48 | $is_written = false;
49 | if ( ( $handle = @fopen( $path, 'w' ) ) !== false ) {
50 | if ( @fwrite( $handle, $content ) !== false ) {
51 | $is_written = true;
52 | }
53 |
54 | @fclose( $handle );
55 | }
56 |
57 | return $is_written;
58 | }
59 |
60 | /**
61 | * Create a file with marker and content
62 | *
63 | * @param string $path Path to the file
64 | * @param string $marker Name of the marker
65 | * @param string $content Content of the file
66 | * @return boolean
67 | */
68 | public static function create_with_markers( $path, $marker, $content ) {
69 | return @insert_with_markers( $path, $marker, $content );
70 | }
71 | }
72 |
--------------------------------------------------------------------------------
/lib/vendor/servmask/filter/class-ai1wm-extension-filter.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 |
26 | class Ai1wm_Extension_Filter extends FilterIterator {
27 |
28 | protected $include = array();
29 |
30 | public function __construct( Iterator $iterator, $include = array() ) {
31 | parent::__construct( $iterator );
32 |
33 | // Set include filter
34 | $this->include = $include;
35 | }
36 |
37 | public function accept() {
38 | if ( in_array( pathinfo( $this->getInnerIterator()->getFilename(), PATHINFO_EXTENSION ), $this->include ) ) {
39 | return true;
40 | }
41 |
42 | return false;
43 | }
44 | }
45 |
--------------------------------------------------------------------------------
/lib/vendor/servmask/filter/class-ai1wm-recursive-exclude-filter.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 |
26 | class Ai1wm_Recursive_Exclude_Filter extends RecursiveFilterIterator {
27 |
28 | protected $exclude = array();
29 |
30 | public function __construct( RecursiveIterator $iterator, $exclude = array() ) {
31 | parent::__construct( $iterator );
32 |
33 | // Set exclude filter
34 | $this->exclude = $exclude;
35 | }
36 |
37 | public function accept() {
38 | return ! in_array( $this->getInnerIterator()->getSubPathname(), $this->exclude );
39 | }
40 |
41 | public function getChildren() {
42 | return new self( $this->getInnerIterator()->getChildren(), $this->exclude );
43 | }
44 | }
45 |
--------------------------------------------------------------------------------
/lib/vendor/servmask/filter/class-ai1wm-recursive-extension-filter.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 |
26 | class Ai1wm_Recursive_Extension_Filter extends RecursiveFilterIterator {
27 |
28 | protected $include = array();
29 |
30 | public function __construct( RecursiveIterator $iterator, $include = array() ) {
31 | parent::__construct( $iterator );
32 |
33 | // Set include filter
34 | $this->include = $include;
35 | }
36 |
37 | public function accept() {
38 | if ( $this->getInnerIterator()->isFile() ) {
39 | if ( ! in_array( pathinfo( $this->getInnerIterator()->getFilename(), PATHINFO_EXTENSION ), $this->include ) ) {
40 | return false;
41 | }
42 | }
43 |
44 | return true;
45 | }
46 |
47 | public function getChildren() {
48 | return new self( $this->getInnerIterator()->getChildren(), $this->include );
49 | }
50 | }
51 |
--------------------------------------------------------------------------------
/lib/vendor/servmask/filter/class-ai1wm-recursive-newline-filter.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 |
26 | class Ai1wm_Recursive_Newline_Filter extends RecursiveFilterIterator {
27 |
28 | public function accept() {
29 | return strpos( $this->getInnerIterator()->getSubPathname(), "\n" ) === false &&
30 | strpos( $this->getInnerIterator()->getSubPathname(), "\r" ) === false;
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/lib/vendor/servmask/iterator/class-ai1wm-recursive-directory-iterator.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 |
26 | class Ai1wm_Recursive_Directory_Iterator extends RecursiveDirectoryIterator {
27 |
28 | public function __construct( $path ) {
29 | parent::__construct( $path );
30 |
31 | // Skip current and parent directory
32 | $this->skipdots();
33 | }
34 |
35 | public function rewind() {
36 | parent::rewind();
37 |
38 | // Skip current and parent directory
39 | $this->skipdots();
40 | }
41 |
42 | public function next() {
43 | parent::next();
44 |
45 | // Skip current and parent directory
46 | $this->skipdots();
47 | }
48 |
49 | /**
50 | * Returns whether current entry is a directory and not '.' or '..'
51 | *
52 | * Explicitly set allow links flag, because RecursiveDirectoryIterator::FOLLOW_SYMLINKS
53 | * is not supported by <= PHP 5.3.0
54 | *
55 | * @return bool
56 | */
57 | public function hasChildren( $allow_links = true ) {
58 | return parent::hasChildren( $allow_links );
59 | }
60 |
61 | protected function skipdots() {
62 | while ( $this->isDot() ) {
63 | parent::next();
64 | }
65 | }
66 | }
67 |
--------------------------------------------------------------------------------
/lib/vendor/servmask/iterator/class-ai1wm-recursive-iterator-iterator.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 |
26 | class Ai1wm_Recursive_Iterator_Iterator extends RecursiveIteratorIterator {
27 |
28 | }
29 |
--------------------------------------------------------------------------------
/lib/view/assets/font/servmask.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dev071/all-in-one-wp-migration-unlimited/2919b1b1c3e5bc7ee9ba61d8effcea2498859d22/lib/view/assets/font/servmask.eot
--------------------------------------------------------------------------------
/lib/view/assets/font/servmask.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dev071/all-in-one-wp-migration-unlimited/2919b1b1c3e5bc7ee9ba61d8effcea2498859d22/lib/view/assets/font/servmask.ttf
--------------------------------------------------------------------------------
/lib/view/assets/font/servmask.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dev071/all-in-one-wp-migration-unlimited/2919b1b1c3e5bc7ee9ba61d8effcea2498859d22/lib/view/assets/font/servmask.woff
--------------------------------------------------------------------------------
/lib/view/assets/img/ajax-loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dev071/all-in-one-wp-migration-unlimited/2919b1b1c3e5bc7ee9ba61d8effcea2498859d22/lib/view/assets/img/ajax-loader.gif
--------------------------------------------------------------------------------
/lib/view/assets/img/logo-128x128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dev071/all-in-one-wp-migration-unlimited/2919b1b1c3e5bc7ee9ba61d8effcea2498859d22/lib/view/assets/img/logo-128x128.png
--------------------------------------------------------------------------------
/lib/view/assets/img/logo-20x20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dev071/all-in-one-wp-migration-unlimited/2919b1b1c3e5bc7ee9ba61d8effcea2498859d22/lib/view/assets/img/logo-20x20.png
--------------------------------------------------------------------------------
/lib/view/assets/img/logo-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dev071/all-in-one-wp-migration-unlimited/2919b1b1c3e5bc7ee9ba61d8effcea2498859d22/lib/view/assets/img/logo-32x32.png
--------------------------------------------------------------------------------
/lib/view/assets/img/logo.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
9 |
10 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/lib/view/common/http-authentication.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 |
--------------------------------------------------------------------------------
/lib/view/common/leave-feedback.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
78 |
--------------------------------------------------------------------------------
/lib/view/common/maintenance-mode.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 |
--------------------------------------------------------------------------------
/lib/view/common/report-problem.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
45 |
56 |
57 |
58 |
--------------------------------------------------------------------------------
/lib/view/common/share-buttons.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
28 |
37 |
51 |
52 |
77 |
--------------------------------------------------------------------------------
/lib/view/export/button-azure-storage.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | Azure Storage
28 |
--------------------------------------------------------------------------------
/lib/view/export/button-b2.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | Backblaze B2
28 |
--------------------------------------------------------------------------------
/lib/view/export/button-box.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | Box
28 |
--------------------------------------------------------------------------------
/lib/view/export/button-digitalocean.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | DigitalOcean
28 |
--------------------------------------------------------------------------------
/lib/view/export/button-dropbox.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | Dropbox
28 |
--------------------------------------------------------------------------------
/lib/view/export/button-file.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
28 |
--------------------------------------------------------------------------------
/lib/view/export/button-ftp.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | FTP
28 |
--------------------------------------------------------------------------------
/lib/view/export/button-gcloud-storage.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | Google Cloud
28 |
--------------------------------------------------------------------------------
/lib/view/export/button-gdrive.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | Google Drive
28 |
--------------------------------------------------------------------------------
/lib/view/export/button-glacier.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | Amazon Glacier
28 |
--------------------------------------------------------------------------------
/lib/view/export/button-mega.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | Mega
28 |
--------------------------------------------------------------------------------
/lib/view/export/button-onedrive.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | OneDrive
28 |
--------------------------------------------------------------------------------
/lib/view/export/button-pcloud.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | pCloud
28 |
--------------------------------------------------------------------------------
/lib/view/export/button-s3.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | Amazon S3
28 |
--------------------------------------------------------------------------------
/lib/view/export/export-buttons.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
48 |
--------------------------------------------------------------------------------
/lib/view/export/find-replace.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
45 |
46 |
47 |
48 |
49 |
50 |
--------------------------------------------------------------------------------
/lib/view/export/help-section.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
--------------------------------------------------------------------------------
/lib/view/export/index.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
70 |
71 |
72 |
73 |
--------------------------------------------------------------------------------
/lib/view/import/button-azure-storage.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | Azure Storage
28 |
--------------------------------------------------------------------------------
/lib/view/import/button-b2.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | Backblaze B2
28 |
--------------------------------------------------------------------------------
/lib/view/import/button-box.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | Box
28 |
--------------------------------------------------------------------------------
/lib/view/import/button-digitalocean.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | DigitalOcean
28 |
--------------------------------------------------------------------------------
/lib/view/import/button-dropbox.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | Dropbox
28 |
--------------------------------------------------------------------------------
/lib/view/import/button-file.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/lib/view/import/button-ftp.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | FTP
28 |
--------------------------------------------------------------------------------
/lib/view/import/button-gcloud-storage.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | Google Cloud
28 |
--------------------------------------------------------------------------------
/lib/view/import/button-gdrive.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | Google Drive
28 |
--------------------------------------------------------------------------------
/lib/view/import/button-glacier.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | Amazon Glacier
28 |
--------------------------------------------------------------------------------
/lib/view/import/button-mega.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | Mega
28 |
--------------------------------------------------------------------------------
/lib/view/import/button-onedrive.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | OneDrive
28 |
--------------------------------------------------------------------------------
/lib/view/import/button-pcloud.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | pCloud
28 |
--------------------------------------------------------------------------------
/lib/view/import/button-s3.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | Amazon S3
28 |
--------------------------------------------------------------------------------
/lib/view/import/button-url.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 | URL
28 |
--------------------------------------------------------------------------------
/lib/view/import/import-buttons.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
28 |
29 |
30 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 | Site could not be imported!' .
80 | '
Please make sure that storage directory %s has read and write permissions.
',
81 | AI1WM_PLUGIN_NAME
82 | ),
83 | AI1WM_STORAGE_PATH
84 | );
85 | ?>
86 |
87 |
88 |
--------------------------------------------------------------------------------
/lib/view/import/index.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
68 |
69 |
70 |
71 |
--------------------------------------------------------------------------------
/lib/view/main/backups-htaccess-notice.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
28 |
29 | %s file. ' .
33 | 'Try to change permissions of the parent folder or send us an email at ' .
34 | 'support@servmask.com for assistance.',
35 | AI1WM_PLUGIN_NAME
36 | ),
37 | AI1WM_BACKUPS_HTACCESS
38 | )
39 | ?>
40 |
41 |
42 |
--------------------------------------------------------------------------------
/lib/view/main/backups-index-notice.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
28 |
29 | %s file. ' .
33 | 'Try to change permissions of the parent folder or send us an email at ' .
34 | 'support@servmask.com for assistance.',
35 | AI1WM_PLUGIN_NAME
36 | ),
37 | AI1WM_BACKUPS_INDEX
38 | )
39 | ?>
40 |
41 |
42 |
--------------------------------------------------------------------------------
/lib/view/main/backups-notice.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | %s folder. ' .
7 | 'You will need to create this folder and grant it read/write/execute permissions (0777) ' .
8 | 'for the All in One WP Migration plugin to function properly.',
9 | AI1WM_PLUGIN_NAME
10 | ),
11 | AI1WM_BACKUPS_PATH
12 | )
13 | ?>
14 |
15 |
16 |
--------------------------------------------------------------------------------
/lib/view/main/backups-path-notice.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
28 |
29 | %s folder. ' .
33 | 'You will need to create this folder and grant it read/write/execute permissions (0777) ' .
34 | 'for the All in One WP Migration plugin to function properly.',
35 | AI1WM_PLUGIN_NAME
36 | ),
37 | AI1WM_BACKUPS_PATH
38 | )
39 | ?>
40 |
41 |
42 |
--------------------------------------------------------------------------------
/lib/view/main/backups-webconfig-notice.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
28 |
29 | %s file. ' .
33 | 'Try to change permissions of the parent folder or send us an email at ' .
34 | 'support@servmask.com for assistance.',
35 | AI1WM_PLUGIN_NAME
36 | ),
37 | AI1WM_BACKUPS_WEBCONFIG
38 | )
39 | ?>
40 |
41 |
42 |
--------------------------------------------------------------------------------
/lib/view/main/get-support.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
28 |
--------------------------------------------------------------------------------
/lib/view/main/index-notice.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | %s file. ' .
7 | 'Try to change permissions of the parent folder or send us an email at ' .
8 | 'support@servmask.com for assistance.',
9 | AI1WM_PLUGIN_NAME
10 | ),
11 | AI1WM_DIRECTORY_INDEX
12 | )
13 | ?>
14 |
15 |
16 |
--------------------------------------------------------------------------------
/lib/view/main/multisite-notice.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
42 |
--------------------------------------------------------------------------------
/lib/view/main/storage-index-notice.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
28 |
29 | %s file. ' .
33 | 'Try to change permissions of the parent folder or send us an email at ' .
34 | 'support@servmask.com for assistance.',
35 | AI1WM_PLUGIN_NAME
36 | ),
37 | AI1WM_STORAGE_INDEX
38 | )
39 | ?>
40 |
41 |
42 |
--------------------------------------------------------------------------------
/lib/view/main/storage-notice.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | %s folder. ' .
7 | 'You will need to create this folder and grant it read/write/execute permissions (0777) ' .
8 | 'for the All in One WP Migration plugin to function properly.',
9 | AI1WM_PLUGIN_NAME
10 | ),
11 | AI1WM_STORAGE_PATH
12 | )
13 | ?>
14 |
15 |
16 |
--------------------------------------------------------------------------------
/lib/view/main/storage-path-notice.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
28 |
29 | %s folder. ' .
33 | 'You will need to create this folder and grant it read/write/execute permissions (0777) ' .
34 | 'for the All in One WP Migration plugin to function properly.',
35 | AI1WM_PLUGIN_NAME
36 | ),
37 | AI1WM_STORAGE_PATH
38 | )
39 | ?>
40 |
41 |
42 |
--------------------------------------------------------------------------------
/lib/view/main/wordpress-htaccess-notice.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
28 |
29 | %s file. ' .
33 | 'Try to change permissions of the parent folder or send us an email at ' .
34 | 'support@servmask.com for assistance.',
35 | AI1WM_PLUGIN_NAME
36 | ),
37 | AI1WM_WORDPRESS_HTACCESS
38 | )
39 | ?>
40 |
41 |
42 |
--------------------------------------------------------------------------------
/lib/view/updater/check.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
28 |
--------------------------------------------------------------------------------
/lib/view/updater/modal.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 | ?>
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 | .
53 |
54 |
--------------------------------------------------------------------------------
/uninstall.php:
--------------------------------------------------------------------------------
1 | .
17 | *
18 | * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
19 | * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
20 | * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
21 | * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
22 | * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
23 | * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
24 | */
25 |
26 | // Include plugin bootstrap file
27 | require_once dirname( __FILE__ ) .
28 | DIRECTORY_SEPARATOR .
29 | 'all-in-one-wp-migration.php';
30 |
31 | /**
32 | * Trigger Uninstall process only if WP_UNINSTALL_PLUGIN is defined
33 | */
34 | if ( defined( 'WP_UNINSTALL_PLUGIN' ) ) {
35 | global $wpdb, $wp_filesystem;
36 |
37 | // Delete any options or other data stored in the database here
38 | delete_option( AI1WM_STATUS );
39 | delete_option( AI1WM_SECRET_KEY );
40 | delete_option( AI1WM_AUTH_USER );
41 | delete_option( AI1WM_AUTH_PASSWORD );
42 | }
43 |
--------------------------------------------------------------------------------