Total Upkeep – WordPress Backup Plugin plus Restore & Migrate by BoldGrid - Version 1.12.0

Version Description

Release date: November 21th, 2019

  • Update: Renamed plugin from "BoldGrid Backup" to "Total Upkeep".
  • New feature: Added support for database dump file encryption.
Download this release

Release Info

Developer boldgrid
Plugin Icon 128x128 Total Upkeep – WordPress Backup Plugin plus Restore & Migrate by BoldGrid
Version 1.12.0
Comparing to
See all releases

Code changes from version 1.12.0-rc.2 to 1.12.0

admin/class-boldgrid-backup-admin-archive-browser.php CHANGED
@@ -175,7 +175,7 @@ class Boldgrid_Backup_Admin_Archive_Browser {
175
  $return .= '</tbody></table>';
176
 
177
  if ( ! $this->core->config->is_premium_done ) {
178
- $get_plugins_url = 'https://www.boldgrid.com/central/plugins?source=bgbkup-archive-browser';
179
  $return .= '<tr><td colspan="2"><div class="bg-box-bottom premium wp-clearfix">' .
180
  $this->core->go_pro->get_premium_button( $get_plugins_url, __( 'Unlock Feature', 'boldgrid-backup' ) ) .
181
  sprintf(
175
  $return .= '</tbody></table>';
176
 
177
  if ( ! $this->core->config->is_premium_done ) {
178
+ $get_plugins_url = $this->core->go_pro->get_premium_url( 'bgbkup-db-browser-encrypt' );
179
  $return .= '<tr><td colspan="2"><div class="bg-box-bottom premium wp-clearfix">' .
180
  $this->core->go_pro->get_premium_button( $get_plugins_url, __( 'Unlock Feature', 'boldgrid-backup' ) ) .
181
  sprintf(
admin/class-boldgrid-backup-admin-core.php CHANGED
@@ -2311,6 +2311,7 @@ class Boldgrid_Backup_Admin_Core {
2311
 
2312
  $this->auto_rollback->enqueue_home_scripts();
2313
  $this->auto_rollback->enqueue_backup_scripts();
 
2314
 
2315
  $this->folder_exclusion->enqueue_scripts();
2316
  $this->db_omit->enqueue_scripts();
2311
 
2312
  $this->auto_rollback->enqueue_home_scripts();
2313
  $this->auto_rollback->enqueue_backup_scripts();
2314
+ $this->archive_actions->enqueue_scripts();
2315
 
2316
  $this->folder_exclusion->enqueue_scripts();
2317
  $this->db_omit->enqueue_scripts();
admin/class-boldgrid-backup-admin-notice.php CHANGED
@@ -267,7 +267,7 @@ class Boldgrid_Backup_Admin_Notice {
267
  $message = sprintf(
268
  // translators: 1: HTML anchor open tag, 2: HTML anchor close tag, 3: HTML H3 open tag, 4: HTML H3 close tag, 5: HTML p open tag, 6: HTML p close tag, 7: Plugin title.
269
  esc_html__(
270
- '%3$s%7$s has become Total Upkeep!%4$s%5$sDifferent name with the same great features. For more information on the change, please go to %1$sour website%2$s.%6$s',
271
  'boldgrid-backup'
272
  ),
273
  '<a target="_blank" href="' . esc_url( $this->core->configs['urls']['plugin_renamed'] ) . '">',
@@ -275,8 +275,7 @@ class Boldgrid_Backup_Admin_Notice {
275
  '<h3>',
276
  '</h3>',
277
  '<p>',
278
- '</p>',
279
- BOLDGRID_BACKUP_TITLE
280
  );
281
 
282
  Notice::show( $message, $notice_id, 'notice notice-info' );
267
  $message = sprintf(
268
  // translators: 1: HTML anchor open tag, 2: HTML anchor close tag, 3: HTML H3 open tag, 4: HTML H3 close tag, 5: HTML p open tag, 6: HTML p close tag, 7: Plugin title.
269
  esc_html__(
270
+ '%3$sBoldGrid Backup has become Total Upkeep!%4$s%5$sDifferent name with the same great features. For more information on the change, please go to %1$sour website%2$s.%6$s',
271
  'boldgrid-backup'
272
  ),
273
  '<a target="_blank" href="' . esc_url( $this->core->configs['urls']['plugin_renamed'] ) . '">',
275
  '<h3>',
276
  '</h3>',
277
  '<p>',
278
+ '</p>'
 
279
  );
280
 
281
  Notice::show( $message, $notice_id, 'notice notice-info' );
admin/js/boldgrid-backup-admin-archive-actions.js CHANGED
@@ -12,8 +12,7 @@ var BOLDGRID = BOLDGRID || {};
12
  BOLDGRID.BACKUP = BOLDGRID.BACKUP || {};
13
 
14
  BOLDGRID.BACKUP.ACTIONS = function( $ ) {
15
- var $body,
16
- $wpbbody,
17
  self = this,
18
  lang = BoldGridBackupAdminArchiveActions;
19
 
@@ -112,22 +111,20 @@ BOLDGRID.BACKUP.ACTIONS = function( $ ) {
112
  * @since 1.6.0
113
  */
114
  self.restoreArchiveConfirm = function() {
115
- var confirmResponse,
116
- restoreConfirmText,
117
- $this = $( this ),
118
- filename = $this.attr( 'data-archive-filename' ),
119
  data = {
120
  action: 'boldgrid_backup_restore_archive',
121
- restore_now: $this.attr( 'data-restore-now' ),
122
- archive_key: $this.attr( 'data-archive-key' ),
123
  archive_filename: filename,
124
- archive_auth: $this.attr( 'data-nonce' )
125
  },
126
  $spinner = $this.next( '.spinner' ),
127
- encryptDb = $wpbody.find( '#bgb-details-encrypt_db' ).data( 'value' );
128
- tokenMatch = $wpbody.find( '#bgbp-token-match' ).data( 'value' );
129
-
130
- restoreConfirmText = lang.restoreConfirmText.replace( '%s', filename );
131
 
132
  if ( 'Y' === encryptDb && 'Y' !== tokenMatch ) {
133
  restoreConfirmText = restoreConfirmText + '\n\n' + lang.tokenMismatchText;
@@ -254,14 +251,13 @@ BOLDGRID.BACKUP.ACTIONS = function( $ ) {
254
  };
255
 
256
  $( function() {
257
- $body = $( 'body' );
258
- $wpbody = $body.find( '#wpbody' );
259
-
260
- $body.on( 'click', '.action-download', self.downloadArchive );
261
- $body.on( 'click', '.restore-now', self.restoreArchiveConfirm );
262
- $body.on( 'click', '#delete-action a', self.onClickDelete );
263
- $body.on( 'click', '#download-link-button', self.getDownloadLink );
264
- $body.on( 'click', '#download-copy-button', self.updateCopyText );
265
  } );
266
  };
267
 
12
  BOLDGRID.BACKUP = BOLDGRID.BACKUP || {};
13
 
14
  BOLDGRID.BACKUP.ACTIONS = function( $ ) {
15
+ var $wpbody,
 
16
  self = this,
17
  lang = BoldGridBackupAdminArchiveActions;
18
 
111
  * @since 1.6.0
112
  */
113
  self.restoreArchiveConfirm = function() {
114
+ var $this = $( this ),
115
+ confirmResponse,
116
+ filename = $this.data( 'archive-filename' ),
117
+ restoreConfirmText = lang.restoreConfirmText.replace( '%s', filename ),
118
  data = {
119
  action: 'boldgrid_backup_restore_archive',
120
+ restore_now: $this.data( 'restore-now' ),
121
+ archive_key: $this.data( 'archive-key' ),
122
  archive_filename: filename,
123
+ archive_auth: $this.data( 'nonce' )
124
  },
125
  $spinner = $this.next( '.spinner' ),
126
+ encryptDb = $wpbody.find( '#bgb-details-encrypt_db' ).data( 'value' ),
127
+ tokenMatch = $wpbody.find( '#bgbp-token-match' ).data( 'value' );
 
 
128
 
129
  if ( 'Y' === encryptDb && 'Y' !== tokenMatch ) {
130
  restoreConfirmText = restoreConfirmText + '\n\n' + lang.tokenMismatchText;
251
  };
252
 
253
  $( function() {
254
+ $wpbody = $( 'body #wpbody' );
255
+
256
+ $wpbody.on( 'click', '.action-download', self.downloadArchive );
257
+ $wpbody.on( 'click', '.restore-now', self.restoreArchiveConfirm );
258
+ $wpbody.on( 'click', '#delete-action a', self.onClickDelete );
259
+ $wpbody.on( 'click', '#download-link-button', self.getDownloadLink );
260
+ $wpbody.on( 'click', '#download-copy-button', self.updateCopyText );
 
261
  } );
262
  };
263
 
admin/js/boldgrid-backup-admin-home.js CHANGED
@@ -215,12 +215,13 @@ BOLDGRID.BACKUP.HOME = function( $ ) {
215
  $this = $( this ),
216
  $spinner = $this.next(),
217
  $notice = $( '#url-import-notice' ),
 
218
  urlRegex = new RegExp( lang.urlRegex, 'i' ),
219
  data = {
220
  action: 'boldgrid_backup_url_upload',
221
- _wpnonce: $( '[name="_wpnonce"]' ).val(),
222
- _wp_http_referer: $( '[name="_wp_http_referer"]' ).val(),
223
- url: $( '[name="url"]' ).val()
224
  };
225
 
226
  e.preventDefault();
215
  $this = $( this ),
216
  $spinner = $this.next(),
217
  $notice = $( '#url-import-notice' ),
218
+ wpnonce = $( '#_wpnonce' ).val(),
219
  urlRegex = new RegExp( lang.urlRegex, 'i' ),
220
  data = {
221
  action: 'boldgrid_backup_url_upload',
222
+ _wpnonce: wpnonce,
223
+ _wp_http_referer: $( 'input[name="_wp_http_referer"]' ).val(),
224
+ url: $( 'input[name="url"]' ).val()
225
  };
226
 
227
  e.preventDefault();
admin/partials/archives/add-new.php CHANGED
@@ -82,6 +82,7 @@ printf(
82
  <p><?php esc_html_e( 'Import from a download link:', 'boldgrid-backup' ); ?></p>
83
  <input type="text" name="url"
84
  placeholder="<?php esc_attr_e( 'Download URL address', 'boldgrid-backup' ); ?>" size="30" />
 
85
  <input class="button" type="submit" value="<?php esc_attr_e( 'Upload', 'boldgrid-backup' ); ?>" />
86
  <span class='spinner'></span>
87
  <div id="url-import-notice" class="notice notice-success inline"></div>
82
  <p><?php esc_html_e( 'Import from a download link:', 'boldgrid-backup' ); ?></p>
83
  <input type="text" name="url"
84
  placeholder="<?php esc_attr_e( 'Download URL address', 'boldgrid-backup' ); ?>" size="30" />
85
+ <?php wp_nonce_field( 'boldgrid_backup_restore_archive', '_wpnonce_restore' ); ?>
86
  <input class="button" type="submit" value="<?php esc_attr_e( 'Upload', 'boldgrid-backup' ); ?>" />
87
  <span class='spinner'></span>
88
  <div id="url-import-notice" class="notice notice-success inline"></div>
admin/partials/boldgrid-backup-admin-archive-details.php CHANGED
@@ -144,11 +144,12 @@ if ( ! $archive_found ) {
144
  $premium_message = sprintf(
145
  '<div class="premium">%1$s</div>
146
  <div><p>%2$s</p></div>',
147
- __(
148
  'Upgrade to Premium to protect your sensitive data!',
149
  'boldgrid-backup'
150
  ),
151
- $this->core->go_pro->get_premium_button( $premium_url )
 
152
  );
153
  break;
154
  case ! $is_premium_installed:
@@ -159,11 +160,12 @@ if ( ! $archive_found ) {
159
  $premium_message = sprintf(
160
  '<div class="premium">%1$s</div>
161
  <div><p>%2$s</p></div>',
162
- __(
163
  'Secure your sesitive data with the Premium plugin!',
164
  'boldgrid-backup'
165
  ),
166
- $this->core->go_pro->get_premium_button( $premium_url, __( 'Unlock Feature', 'boldgrid-backup' ) )
 
167
  );
168
  break;
169
  case ! $is_premium_active:
144
  $premium_message = sprintf(
145
  '<div class="premium">%1$s</div>
146
  <div><p>%2$s</p></div>',
147
+ esc_html__(
148
  'Upgrade to Premium to protect your sensitive data!',
149
  'boldgrid-backup'
150
  ),
151
+ '<form action="' . $premium_url . '" target="_blank"><button class="button button-success" type="submit">' .
152
+ esc_html__( 'Get Premium', 'boldgrid-backup' ) . '</button></form>'
153
  );
154
  break;
155
  case ! $is_premium_installed:
160
  $premium_message = sprintf(
161
  '<div class="premium">%1$s</div>
162
  <div><p>%2$s</p></div>',
163
+ esc_html__(
164
  'Secure your sesitive data with the Premium plugin!',
165
  'boldgrid-backup'
166
  ),
167
+ '<form action="' . $premium_url . '" target="_blank"><button class="button button-success" type="submit">' .
168
+ esc_html__( 'Unlock Feature', 'boldgrid-backup' ) . '</button></form>'
169
  );
170
  break;
171
  case ! $is_premium_active:
admin/partials/transfers/destination.php CHANGED
@@ -30,7 +30,7 @@ switch ( true ) {
30
 
31
  case ! $is_premium:
32
  // Does not have a premium license.
33
- $get_premium_url = 'https://www.boldgrid.com/update-backup?source=bgbkup-settings-transfer-destination';
34
  $encrypt_message = sprintf(
35
  // translators: 1: Get premium button/link, 2: Premium plugin title.
36
  __( 'If you are going to import and restore a backup containing encrypted files, then a %2$s license is required for decryption. %1$s', 'boldgrid-backup' ),
@@ -41,7 +41,7 @@ switch ( true ) {
41
 
42
  case ! $is_premium_installed:
43
  // Has a premium license, but no premium plugin is installed.
44
- $get_plugins_url = 'https://www.boldgrid.com/central/plugins?source=bgbkup-settings-transfer-destination';
45
  $encrypt_message = sprintf(
46
  // translators: 1: Unlock Feature button/link, 2: Premium plugin title.
47
  esc_html__( 'The %2$s plugin is required for encryption. %1$s', 'boldgrid-backup' ),
30
 
31
  case ! $is_premium:
32
  // Does not have a premium license.
33
+ $get_premium_url = $this->core->go_pro->get_premium_url( 'bgbkup-transfer-destination' );
34
  $encrypt_message = sprintf(
35
  // translators: 1: Get premium button/link, 2: Premium plugin title.
36
  __( 'If you are going to import and restore a backup containing encrypted files, then a %2$s license is required for decryption. %1$s', 'boldgrid-backup' ),
41
 
42
  case ! $is_premium_installed:
43
  // Has a premium license, but no premium plugin is installed.
44
+ $get_plugins_url = $this->core->go_pro->get_premium_url( 'bgbkup-transfer-destination' );
45
  $encrypt_message = sprintf(
46
  // translators: 1: Unlock Feature button/link, 2: Premium plugin title.
47
  esc_html__( 'The %2$s plugin is required for encryption. %1$s', 'boldgrid-backup' ),
boldgrid-backup.php CHANGED
@@ -16,7 +16,7 @@
16
  * Plugin Name: Total Upkeep
17
  * Plugin URI: https://www.boldgrid.com/boldgrid-backup/
18
  * Description: Automated backups, remote backup to Amazon S3 and Google Drive, stop website crashes before they happen and more. Total Upkeep is the backup solution you need.
19
- * Version: 1.12.0-rc.2
20
  * Author: BoldGrid
21
  * Author URI: https://www.boldgrid.com/
22
  * License: GPL-2.0+
16
  * Plugin Name: Total Upkeep
17
  * Plugin URI: https://www.boldgrid.com/boldgrid-backup/
18
  * Description: Automated backups, remote backup to Amazon S3 and Google Drive, stop website crashes before they happen and more. Total Upkeep is the backup solution you need.
19
+ * Version: 1.12.0
20
  * Author: BoldGrid
21
  * Author URI: https://www.boldgrid.com/
22
  * License: GPL-2.0+
coverage.xml CHANGED
@@ -1,6 +1,6 @@
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <coverage generated="1574351957">
3
- <project timestamp="1574351957">
4
  <package name="Boldgrid\Backup\Admin\Card">
5
  <file name="/home/travis/build/BoldGrid/boldgrid-backup/admin/card/class-backups.php">
6
  <class name="Backups" namespace="Boldgrid\Backup\Admin\Card">
@@ -2257,7 +2257,7 @@
2257
  </file>
2258
  <file name="/home/travis/build/BoldGrid/boldgrid-backup/admin/class-boldgrid-backup-admin-core.php">
2259
  <class name="Boldgrid_Backup_Admin_Core" namespace="global" fullPackage="Boldgrid.Backup.Admin">
2260
- <metrics complexity="226" methods="28" coveredmethods="4" conditionals="0" coveredconditionals="0" statements="978" coveredstatements="433" elements="1006" coveredelements="437"/>
2261
  </class>
2262
  <line num="532" type="method" name="__construct" visibility="public" complexity="7" crap="7.03" count="17"/>
2263
  <line num="533" type="stmt" count="17"/>
@@ -3047,112 +3047,112 @@
3047
  <line num="2309" type="stmt" count="0"/>
3048
  <line num="2312" type="stmt" count="0"/>
3049
  <line num="2313" type="stmt" count="0"/>
3050
- <line num="2315" type="stmt" count="0"/>
3051
  <line num="2316" type="stmt" count="0"/>
3052
- <line num="2319" type="stmt" count="0"/>
3053
  <line num="2320" type="stmt" count="0"/>
3054
  <line num="2321" type="stmt" count="0"/>
3055
- <line num="2324" type="stmt" count="0"/>
3056
- <line num="2327" type="stmt" count="0"/>
3057
- <line num="2330" type="stmt" count="0"/>
3058
- <line num="2332" type="stmt" count="0"/>
3059
  <line num="2333" type="stmt" count="0"/>
3060
  <line num="2334" type="stmt" count="0"/>
3061
- <line num="2337" type="stmt" count="0"/>
3062
- <line num="2339" type="stmt" count="0"/>
3063
- <line num="2342" type="stmt" count="0"/>
3064
  <line num="2343" type="stmt" count="0"/>
3065
  <line num="2344" type="stmt" count="0"/>
3066
- <line num="2346" type="stmt" count="0"/>
3067
- <line num="2349" type="stmt" count="0"/>
3068
  <line num="2350" type="stmt" count="0"/>
3069
- <line num="2359" type="method" name="boldgrid_backup_now_callback" visibility="public" complexity="10" crap="110" count="0"/>
3070
- <line num="2362" type="stmt" count="0"/>
3071
  <line num="2363" type="stmt" count="0"/>
3072
  <line num="2364" type="stmt" count="0"/>
3073
- <line num="2366" type="stmt" count="0"/>
3074
  <line num="2367" type="stmt" count="0"/>
3075
  <line num="2368" type="stmt" count="0"/>
3076
- <line num="2371" type="stmt" count="0"/>
3077
  <line num="2372" type="stmt" count="0"/>
3078
  <line num="2373" type="stmt" count="0"/>
3079
- <line num="2375" type="stmt" count="0"/>
3080
  <line num="2376" type="stmt" count="0"/>
3081
  <line num="2377" type="stmt" count="0"/>
3082
- <line num="2379" type="stmt" count="0"/>
3083
- <line num="2381" type="stmt" count="0"/>
3084
  <line num="2382" type="stmt" count="0"/>
3085
  <line num="2383" type="stmt" count="0"/>
3086
- <line num="2385" type="stmt" count="0"/>
3087
  <line num="2386" type="stmt" count="0"/>
3088
- <line num="2388" type="stmt" count="0"/>
3089
- <line num="2391" type="stmt" count="0"/>
3090
  <line num="2392" type="stmt" count="0"/>
3091
  <line num="2393" type="stmt" count="0"/>
3092
- <line num="2395" type="stmt" count="0"/>
3093
  <line num="2396" type="stmt" count="0"/>
3094
  <line num="2397" type="stmt" count="0"/>
3095
- <line num="2406" type="stmt" count="0"/>
3096
  <line num="2407" type="stmt" count="0"/>
3097
- <line num="2419" type="method" name="download_archive_file_callback" visibility="public" complexity="10" crap="110" count="0"/>
3098
- <line num="2421" type="stmt" count="0"/>
3099
- <line num="2424" type="stmt" count="0"/>
3100
  <line num="2425" type="stmt" count="0"/>
3101
  <line num="2426" type="stmt" count="0"/>
3102
  <line num="2427" type="stmt" count="0"/>
3103
- <line num="2430" type="stmt" count="0"/>
3104
  <line num="2431" type="stmt" count="0"/>
3105
  <line num="2432" type="stmt" count="0"/>
3106
  <line num="2433" type="stmt" count="0"/>
3107
  <line num="2434" type="stmt" count="0"/>
3108
- <line num="2438" type="stmt" count="0"/>
3109
  <line num="2439" type="stmt" count="0"/>
3110
  <line num="2440" type="stmt" count="0"/>
3111
  <line num="2441" type="stmt" count="0"/>
3112
  <line num="2442" type="stmt" count="0"/>
3113
- <line num="2446" type="stmt" count="0"/>
3114
- <line num="2449" type="stmt" count="0"/>
3115
  <line num="2450" type="stmt" count="0"/>
3116
  <line num="2451" type="stmt" count="0"/>
3117
  <line num="2452" type="stmt" count="0"/>
3118
- <line num="2455" type="stmt" count="0"/>
3119
- <line num="2458" type="stmt" count="0"/>
3120
  <line num="2459" type="stmt" count="0"/>
3121
  <line num="2460" type="stmt" count="0"/>
3122
  <line num="2461" type="stmt" count="0"/>
3123
- <line num="2465" type="stmt" count="0"/>
3124
  <line num="2466" type="stmt" count="0"/>
3125
  <line num="2467" type="stmt" count="0"/>
3126
- <line num="2470" type="stmt" count="0"/>
3127
  <line num="2471" type="stmt" count="0"/>
3128
  <line num="2472" type="stmt" count="0"/>
3129
  <line num="2473" type="stmt" count="0"/>
3130
- <line num="2475" type="stmt" count="0"/>
3131
- <line num="2477" type="stmt" count="0"/>
3132
- <line num="2479" type="stmt" count="0"/>
3133
  <line num="2480" type="stmt" count="0"/>
3134
  <line num="2481" type="stmt" count="0"/>
3135
- <line num="2484" type="stmt" count="0"/>
3136
  <line num="2485" type="stmt" count="0"/>
3137
- <line num="2495" type="method" name="page_backup_test" visibility="public" complexity="6" crap="42" count="0"/>
3138
- <line num="2497" type="stmt" count="0"/>
3139
- <line num="2500" type="stmt" count="0"/>
3140
- <line num="2503" type="stmt" count="0"/>
3141
- <line num="2506" type="stmt" count="0"/>
3142
- <line num="2509" type="stmt" count="0"/>
3143
- <line num="2511" type="stmt" count="0"/>
3144
- <line num="2514" type="stmt" count="0"/>
3145
- <line num="2517" type="stmt" count="0"/>
3146
- <line num="2520" type="stmt" count="0"/>
3147
- <line num="2523" type="stmt" count="0"/>
3148
- <line num="2526" type="stmt" count="0"/>
3149
- <line num="2528" type="stmt" count="0"/>
3150
- <line num="2536" type="stmt" count="0"/>
3151
  <line num="2537" type="stmt" count="0"/>
3152
  <line num="2538" type="stmt" count="0"/>
3153
  <line num="2539" type="stmt" count="0"/>
3154
  <line num="2540" type="stmt" count="0"/>
3155
- <line num="2543" type="stmt" count="0"/>
3156
  <line num="2544" type="stmt" count="0"/>
3157
  <line num="2545" type="stmt" count="0"/>
3158
  <line num="2546" type="stmt" count="0"/>
@@ -3160,119 +3160,120 @@
3160
  <line num="2548" type="stmt" count="0"/>
3161
  <line num="2549" type="stmt" count="0"/>
3162
  <line num="2550" type="stmt" count="0"/>
3163
- <line num="2552" type="stmt" count="0"/>
3164
- <line num="2555" type="stmt" count="0"/>
3165
  <line num="2556" type="stmt" count="0"/>
3166
  <line num="2557" type="stmt" count="0"/>
3167
  <line num="2558" type="stmt" count="0"/>
3168
  <line num="2559" type="stmt" count="0"/>
3169
  <line num="2560" type="stmt" count="0"/>
3170
- <line num="2563" type="stmt" count="0"/>
3171
  <line num="2564" type="stmt" count="0"/>
3172
- <line num="2579" type="method" name="set_doing_cron" visibility="public" complexity="3" crap="3" count="17"/>
3173
- <line num="2580" type="stmt" count="17"/>
3174
  <line num="2581" type="stmt" count="17"/>
3175
- <line num="2588" type="method" name="set_lang" visibility="public" complexity="1" crap="1" count="17"/>
3176
- <line num="2593" type="stmt" count="17"/>
3177
- <line num="2595" type="stmt" count="17"/>
3178
  <line num="2596" type="stmt" count="17"/>
3179
  <line num="2597" type="stmt" count="17"/>
3180
  <line num="2598" type="stmt" count="17"/>
3181
  <line num="2599" type="stmt" count="17"/>
3182
  <line num="2600" type="stmt" count="17"/>
3183
- <line num="2602" type="stmt" count="17"/>
3184
  <line num="2603" type="stmt" count="17"/>
3185
- <line num="2605" type="stmt" count="17"/>
3186
  <line num="2606" type="stmt" count="17"/>
3187
  <line num="2607" type="stmt" count="17"/>
3188
  <line num="2608" type="stmt" count="17"/>
3189
  <line num="2609" type="stmt" count="17"/>
3190
  <line num="2610" type="stmt" count="17"/>
3191
- <line num="2612" type="stmt" count="17"/>
3192
  <line num="2613" type="stmt" count="17"/>
3193
  <line num="2614" type="stmt" count="17"/>
3194
- <line num="2620" type="stmt" count="17"/>
3195
- <line num="2622" type="stmt" count="17"/>
3196
  <line num="2623" type="stmt" count="17"/>
3197
  <line num="2624" type="stmt" count="17"/>
3198
  <line num="2625" type="stmt" count="17"/>
3199
  <line num="2626" type="stmt" count="17"/>
3200
- <line num="2628" type="stmt" count="17"/>
3201
- <line num="2631" type="stmt" count="17"/>
3202
  <line num="2632" type="stmt" count="17"/>
3203
- <line num="2634" type="stmt" count="17"/>
3204
- <line num="2636" type="stmt" count="17"/>
3205
- <line num="2648" type="method" name="set_time_limit" visibility="public" complexity="2" crap="2" count="3"/>
3206
- <line num="2649" type="stmt" count="3"/>
3207
- <line num="2651" type="stmt" count="3"/>
3208
  <line num="2652" type="stmt" count="3"/>
3209
- <line num="2659" type="method" name="wp_ajax_restore" visibility="public" complexity="6" crap="42" count="0"/>
3210
- <line num="2660" type="stmt" count="0"/>
3211
  <line num="2661" type="stmt" count="0"/>
3212
- <line num="2664" type="stmt" count="0"/>
3213
  <line num="2665" type="stmt" count="0"/>
3214
  <line num="2666" type="stmt" count="0"/>
3215
- <line num="2668" type="stmt" count="0"/>
3216
  <line num="2669" type="stmt" count="0"/>
3217
  <line num="2670" type="stmt" count="0"/>
3218
- <line num="2673" type="stmt" count="0"/>
3219
  <line num="2674" type="stmt" count="0"/>
3220
  <line num="2675" type="stmt" count="0"/>
3221
- <line num="2677" type="stmt" count="0"/>
3222
  <line num="2678" type="stmt" count="0"/>
3223
  <line num="2679" type="stmt" count="0"/>
3224
- <line num="2681" type="stmt" count="0"/>
3225
- <line num="2694" type="stmt" count="0"/>
3226
  <line num="2695" type="stmt" count="0"/>
3227
- <line num="2697" type="stmt" count="0"/>
3228
  <line num="2698" type="stmt" count="0"/>
3229
  <line num="2699" type="stmt" count="0"/>
3230
  <line num="2700" type="stmt" count="0"/>
3231
  <line num="2701" type="stmt" count="0"/>
3232
- <line num="2703" type="stmt" count="0"/>
3233
  <line num="2704" type="stmt" count="0"/>
3234
  <line num="2705" type="stmt" count="0"/>
3235
  <line num="2706" type="stmt" count="0"/>
3236
- <line num="2708" type="stmt" count="0"/>
3237
- <line num="2710" type="stmt" count="0"/>
3238
  <line num="2711" type="stmt" count="0"/>
3239
- <line num="2727" type="method" name="boldgrid_backup_now_auto" visibility="public" complexity="4" crap="20" count="0"/>
3240
- <line num="2729" type="stmt" count="0"/>
3241
- <line num="2732" type="stmt" count="0"/>
3242
  <line num="2733" type="stmt" count="0"/>
3243
- <line num="2737" type="stmt" count="0"/>
3244
- <line num="2740" type="stmt" count="0"/>
3245
  <line num="2741" type="stmt" count="0"/>
3246
- <line num="2745" type="stmt" count="0"/>
3247
  <line num="2746" type="stmt" count="0"/>
3248
- <line num="2757" type="method" name="enforce_retention" visibility="public" complexity="8" crap="22.91" count="3"/>
3249
- <line num="2759" type="stmt" count="3"/>
3250
- <line num="2761" type="stmt" count="3"/>
3251
- <line num="2764" type="stmt" count="3"/>
3252
  <line num="2765" type="stmt" count="3"/>
3253
  <line num="2766" type="stmt" count="3"/>
3254
- <line num="2767" type="stmt" count="0"/>
3255
  <line num="2768" type="stmt" count="0"/>
3256
- <line num="2769" type="stmt" count="3"/>
3257
  <line num="2770" type="stmt" count="3"/>
3258
- <line num="2773" type="stmt" count="3"/>
3259
- <line num="2776" type="stmt" count="3"/>
3260
  <line num="2777" type="stmt" count="3"/>
3261
- <line num="2781" type="stmt" count="0"/>
3262
- <line num="2784" type="stmt" count="0"/>
3263
- <line num="2787" type="stmt" count="0"/>
3264
- <line num="2790" type="stmt" count="0"/>
3265
  <line num="2791" type="stmt" count="0"/>
3266
  <line num="2792" type="stmt" count="0"/>
3267
- <line num="2795" type="stmt" count="0"/>
3268
  <line num="2796" type="stmt" count="0"/>
3269
- <line num="2798" type="stmt" count="0"/>
3270
- <line num="2808" type="stmt" count="0"/>
3271
- <line num="2811" type="stmt" count="0"/>
3272
- <line num="2814" type="stmt" count="0"/>
3273
  <line num="2815" type="stmt" count="0"/>
3274
  <line num="2816" type="stmt" count="0"/>
3275
- <metrics loc="2817" ncloc="1416" classes="1" methods="28" coveredmethods="4" conditionals="0" coveredconditionals="0" statements="985" coveredstatements="433" elements="1013" coveredelements="437"/>
 
3276
  </file>
3277
  <file name="/home/travis/build/BoldGrid/boldgrid-backup/admin/class-boldgrid-backup-admin-cron-log.php">
3278
  <class name="Boldgrid_Backup_Admin_Cron_Log" namespace="global" fullPackage="Boldgrid.Backup.Admin.Cron">
@@ -4918,7 +4919,7 @@
4918
  </file>
4919
  <file name="/home/travis/build/BoldGrid/boldgrid-backup/admin/class-boldgrid-backup-admin-notice.php">
4920
  <class name="Boldgrid_Backup_Admin_Notice" namespace="global" fullPackage="Boldgrid.Backup.Admin">
4921
- <metrics complexity="21" methods="11" coveredmethods="1" conditionals="0" coveredconditionals="0" statements="85" coveredstatements="2" elements="96" coveredelements="3"/>
4922
  </class>
4923
  <line num="58" type="method" name="__construct" visibility="public" complexity="1" crap="1" count="17"/>
4924
  <line num="59" type="stmt" count="17"/>
@@ -5011,12 +5012,11 @@
5011
  <line num="275" type="stmt" count="0"/>
5012
  <line num="276" type="stmt" count="0"/>
5013
  <line num="277" type="stmt" count="0"/>
5014
- <line num="278" type="stmt" count="0"/>
5015
- <line num="280" type="stmt" count="0"/>
5016
  <line num="282" type="stmt" count="0"/>
5017
  <line num="283" type="stmt" count="0"/>
5018
- <line num="284" type="stmt" count="0"/>
5019
- <metrics loc="285" ncloc="150" classes="1" methods="11" coveredmethods="1" conditionals="0" coveredconditionals="0" statements="85" coveredstatements="2" elements="96" coveredelements="3"/>
5020
  </file>
5021
  <file name="/home/travis/build/BoldGrid/boldgrid-backup/admin/class-boldgrid-backup-admin-plugins.php">
5022
  <class name="Boldgrid_Backup_Admin_Plugins" namespace="global" fullPackage="Boldgrid.Backup.Admin">
@@ -8000,28 +8000,28 @@
8000
  <line num="79" type="stmt" count="0"/>
8001
  <line num="81" type="stmt" count="0"/>
8002
  <line num="83" type="stmt" count="0"/>
8003
- <line num="86" type="stmt" count="0"/>
8004
  <line num="87" type="stmt" count="0"/>
8005
  <line num="88" type="stmt" count="0"/>
8006
- <line num="90" type="stmt" count="0"/>
8007
- <line num="92" type="stmt" count="0"/>
8008
- <line num="94" type="stmt" count="0"/>
8009
- <line num="96" type="stmt" count="0"/>
8010
  <line num="97" type="stmt" count="0"/>
8011
  <line num="98" type="stmt" count="0"/>
8012
  <line num="99" type="stmt" count="0"/>
8013
- <line num="101" type="stmt" count="0"/>
8014
- <line num="103" type="stmt" count="0"/>
8015
- <line num="105" type="stmt" count="0"/>
8016
- <line num="107" type="stmt" count="0"/>
8017
  <line num="108" type="stmt" count="0"/>
8018
- <line num="110" type="stmt" count="0"/>
8019
- <line num="112" type="stmt" count="0"/>
8020
  <line num="113" type="stmt" count="0"/>
8021
- <line num="115" type="stmt" count="0"/>
8022
- <line num="117" type="stmt" count="0"/>
8023
- <line num="119" type="stmt" count="0"/>
8024
- <metrics loc="119" ncloc="99" classes="0" methods="0" coveredmethods="0" conditionals="0" coveredconditionals="0" statements="70" coveredstatements="0" elements="70" coveredelements="0"/>
 
8025
  </file>
8026
  <file name="/home/travis/build/BoldGrid/boldgrid-backup/admin/partials/archives/note-pre-backup.php">
8027
  <line num="17" type="stmt" count="0"/>
@@ -8211,8 +8211,8 @@
8211
  <line num="169" type="stmt" count="0"/>
8212
  <line num="170" type="stmt" count="0"/>
8213
  <line num="171" type="stmt" count="0"/>
 
8214
  <line num="173" type="stmt" count="0"/>
8215
- <line num="174" type="stmt" count="0"/>
8216
  <line num="175" type="stmt" count="0"/>
8217
  <line num="176" type="stmt" count="0"/>
8218
  <line num="177" type="stmt" count="0"/>
@@ -8226,8 +8226,8 @@
8226
  <line num="185" type="stmt" count="0"/>
8227
  <line num="186" type="stmt" count="0"/>
8228
  <line num="187" type="stmt" count="0"/>
 
8229
  <line num="189" type="stmt" count="0"/>
8230
- <line num="190" type="stmt" count="0"/>
8231
  <line num="191" type="stmt" count="0"/>
8232
  <line num="192" type="stmt" count="0"/>
8233
  <line num="193" type="stmt" count="0"/>
@@ -8239,8 +8239,8 @@
8239
  <line num="199" type="stmt" count="0"/>
8240
  <line num="200" type="stmt" count="0"/>
8241
  <line num="201" type="stmt" count="0"/>
 
8242
  <line num="203" type="stmt" count="0"/>
8243
- <line num="204" type="stmt" count="0"/>
8244
  <line num="205" type="stmt" count="0"/>
8245
  <line num="206" type="stmt" count="0"/>
8246
  <line num="207" type="stmt" count="0"/>
@@ -8263,8 +8263,8 @@
8263
  <line num="224" type="stmt" count="0"/>
8264
  <line num="225" type="stmt" count="0"/>
8265
  <line num="226" type="stmt" count="0"/>
 
8266
  <line num="228" type="stmt" count="0"/>
8267
- <line num="229" type="stmt" count="0"/>
8268
  <line num="230" type="stmt" count="0"/>
8269
  <line num="231" type="stmt" count="0"/>
8270
  <line num="232" type="stmt" count="0"/>
@@ -8287,8 +8287,8 @@
8287
  <line num="249" type="stmt" count="0"/>
8288
  <line num="250" type="stmt" count="0"/>
8289
  <line num="251" type="stmt" count="0"/>
 
8290
  <line num="253" type="stmt" count="0"/>
8291
- <line num="254" type="stmt" count="0"/>
8292
  <line num="255" type="stmt" count="0"/>
8293
  <line num="256" type="stmt" count="0"/>
8294
  <line num="257" type="stmt" count="0"/>
@@ -8311,16 +8311,16 @@
8311
  <line num="274" type="stmt" count="0"/>
8312
  <line num="275" type="stmt" count="0"/>
8313
  <line num="276" type="stmt" count="0"/>
 
8314
  <line num="278" type="stmt" count="0"/>
8315
- <line num="279" type="stmt" count="0"/>
8316
  <line num="280" type="stmt" count="0"/>
8317
  <line num="281" type="stmt" count="0"/>
8318
  <line num="282" type="stmt" count="0"/>
8319
  <line num="283" type="stmt" count="0"/>
8320
  <line num="284" type="stmt" count="0"/>
8321
  <line num="285" type="stmt" count="0"/>
 
8322
  <line num="287" type="stmt" count="0"/>
8323
- <line num="288" type="stmt" count="0"/>
8324
  <line num="289" type="stmt" count="0"/>
8325
  <line num="290" type="stmt" count="0"/>
8326
  <line num="291" type="stmt" count="0"/>
@@ -8335,8 +8335,8 @@
8335
  <line num="300" type="stmt" count="0"/>
8336
  <line num="301" type="stmt" count="0"/>
8337
  <line num="302" type="stmt" count="0"/>
 
8338
  <line num="304" type="stmt" count="0"/>
8339
- <line num="305" type="stmt" count="0"/>
8340
  <line num="306" type="stmt" count="0"/>
8341
  <line num="307" type="stmt" count="0"/>
8342
  <line num="308" type="stmt" count="0"/>
@@ -8348,15 +8348,15 @@
8348
  <line num="314" type="stmt" count="0"/>
8349
  <line num="315" type="stmt" count="0"/>
8350
  <line num="316" type="stmt" count="0"/>
 
8351
  <line num="318" type="stmt" count="0"/>
8352
- <line num="319" type="stmt" count="0"/>
8353
  <line num="320" type="stmt" count="0"/>
8354
  <line num="321" type="stmt" count="0"/>
8355
  <line num="322" type="stmt" count="0"/>
8356
  <line num="323" type="stmt" count="0"/>
8357
  <line num="324" type="stmt" count="0"/>
 
8358
  <line num="326" type="stmt" count="0"/>
8359
- <line num="327" type="stmt" count="0"/>
8360
  <line num="328" type="stmt" count="0"/>
8361
  <line num="329" type="stmt" count="0"/>
8362
  <line num="330" type="stmt" count="0"/>
@@ -8383,8 +8383,8 @@
8383
  <line num="351" type="stmt" count="0"/>
8384
  <line num="352" type="stmt" count="0"/>
8385
  <line num="353" type="stmt" count="0"/>
8386
- <line num="361" type="stmt" count="0"/>
8387
- <line num="362" type="stmt" count="0"/>
8388
  <line num="363" type="stmt" count="0"/>
8389
  <line num="364" type="stmt" count="0"/>
8390
  <line num="365" type="stmt" count="0"/>
@@ -8397,16 +8397,16 @@
8397
  <line num="372" type="stmt" count="0"/>
8398
  <line num="373" type="stmt" count="0"/>
8399
  <line num="374" type="stmt" count="0"/>
 
8400
  <line num="376" type="stmt" count="0"/>
8401
  <line num="378" type="stmt" count="0"/>
8402
- <line num="379" type="stmt" count="0"/>
8403
  <line num="380" type="stmt" count="0"/>
8404
  <line num="381" type="stmt" count="0"/>
8405
  <line num="382" type="stmt" count="0"/>
8406
  <line num="383" type="stmt" count="0"/>
8407
  <line num="384" type="stmt" count="0"/>
 
8408
  <line num="386" type="stmt" count="0"/>
8409
- <line num="387" type="stmt" count="0"/>
8410
  <line num="388" type="stmt" count="0"/>
8411
  <line num="389" type="stmt" count="0"/>
8412
  <line num="390" type="stmt" count="0"/>
@@ -8418,9 +8418,9 @@
8418
  <line num="396" type="stmt" count="0"/>
8419
  <line num="397" type="stmt" count="0"/>
8420
  <line num="398" type="stmt" count="0"/>
 
8421
  <line num="400" type="stmt" count="0"/>
8422
  <line num="402" type="stmt" count="0"/>
8423
- <line num="403" type="stmt" count="0"/>
8424
  <line num="404" type="stmt" count="0"/>
8425
  <line num="405" type="stmt" count="0"/>
8426
  <line num="406" type="stmt" count="0"/>
@@ -8433,8 +8433,10 @@
8433
  <line num="413" type="stmt" count="0"/>
8434
  <line num="414" type="stmt" count="0"/>
8435
  <line num="415" type="stmt" count="0"/>
 
8436
  <line num="417" type="stmt" count="0"/>
8437
- <metrics loc="417" ncloc="349" classes="0" methods="0" coveredmethods="0" conditionals="0" coveredconditionals="0" statements="356" coveredstatements="0" elements="356" coveredelements="0"/>
 
8438
  </file>
8439
  <file name="/home/travis/build/BoldGrid/boldgrid-backup/admin/partials/boldgrid-backup-admin-backup-button.php">
8440
  <line num="19" type="stmt" count="0"/>
@@ -72623,7 +72625,7 @@
72623
  <metrics loc="445" ncloc="281" classes="1" methods="21" coveredmethods="0" conditionals="0" coveredconditionals="0" statements="216" coveredstatements="0" elements="237" coveredelements="0"/>
72624
  </file>
72625
  <file name="/home/travis/build/BoldGrid/boldgrid-backup/vendor/composer/autoload_static.php">
72626
- <class name="ComposerStaticInit68bb734f000af454209f541ed82088d6" namespace="Composer\Autoload">
72627
  <metrics complexity="2" methods="2" coveredmethods="0" conditionals="0" coveredconditionals="0" statements="5" coveredstatements="0" elements="7" coveredelements="0"/>
72628
  </class>
72629
  <line num="91" type="method" name="getInitializer" visibility="public" complexity="1" crap="2" count="0"/>
@@ -72715,7 +72717,7 @@
72715
  <metrics loc="12" ncloc="10" classes="0" methods="0" coveredmethods="0" conditionals="0" coveredconditionals="0" statements="7" coveredstatements="0" elements="7" coveredelements="0"/>
72716
  </file>
72717
  <file name="/home/travis/build/BoldGrid/boldgrid-backup/vendor/composer/autoload_real.php">
72718
- <class name="ComposerAutoloaderInit68bb734f000af454209f541ed82088d6" namespace="global">
72719
  <metrics complexity="13" methods="2" coveredmethods="0" conditionals="0" coveredconditionals="0" statements="41" coveredstatements="0" elements="43" coveredelements="0"/>
72720
  </class>
72721
  <line num="9" type="method" name="loadClassLoader" visibility="public" complexity="2" crap="6" count="0"/>
@@ -91715,6 +91717,6 @@
91715
  <line num="16" type="stmt" count="0"/>
91716
  <metrics loc="16" ncloc="9" classes="0" methods="0" coveredmethods="0" conditionals="0" coveredconditionals="0" statements="8" coveredstatements="0" elements="8" coveredelements="0"/>
91717
  </file>
91718
- <metrics files="905" loc="182807" ncloc="111924" classes="818" methods="3307" coveredmethods="167" conditionals="0" coveredconditionals="0" statements="82830" coveredstatements="2747" elements="86137" coveredelements="2914"/>
91719
  </project>
91720
  </coverage>
1
  <?xml version="1.0" encoding="UTF-8"?>
2
+ <coverage generated="1574371555">
3
+ <project timestamp="1574371555">
4
  <package name="Boldgrid\Backup\Admin\Card">
5
  <file name="/home/travis/build/BoldGrid/boldgrid-backup/admin/card/class-backups.php">
6
  <class name="Backups" namespace="Boldgrid\Backup\Admin\Card">
2257
  </file>
2258
  <file name="/home/travis/build/BoldGrid/boldgrid-backup/admin/class-boldgrid-backup-admin-core.php">
2259
  <class name="Boldgrid_Backup_Admin_Core" namespace="global" fullPackage="Boldgrid.Backup.Admin">
2260
+ <metrics complexity="226" methods="28" coveredmethods="4" conditionals="0" coveredconditionals="0" statements="979" coveredstatements="433" elements="1007" coveredelements="437"/>
2261
  </class>
2262
  <line num="532" type="method" name="__construct" visibility="public" complexity="7" crap="7.03" count="17"/>
2263
  <line num="533" type="stmt" count="17"/>
3047
  <line num="2309" type="stmt" count="0"/>
3048
  <line num="2312" type="stmt" count="0"/>
3049
  <line num="2313" type="stmt" count="0"/>
3050
+ <line num="2314" type="stmt" count="0"/>
3051
  <line num="2316" type="stmt" count="0"/>
3052
+ <line num="2317" type="stmt" count="0"/>
3053
  <line num="2320" type="stmt" count="0"/>
3054
  <line num="2321" type="stmt" count="0"/>
3055
+ <line num="2322" type="stmt" count="0"/>
3056
+ <line num="2325" type="stmt" count="0"/>
3057
+ <line num="2328" type="stmt" count="0"/>
3058
+ <line num="2331" type="stmt" count="0"/>
3059
  <line num="2333" type="stmt" count="0"/>
3060
  <line num="2334" type="stmt" count="0"/>
3061
+ <line num="2335" type="stmt" count="0"/>
3062
+ <line num="2338" type="stmt" count="0"/>
3063
+ <line num="2340" type="stmt" count="0"/>
3064
  <line num="2343" type="stmt" count="0"/>
3065
  <line num="2344" type="stmt" count="0"/>
3066
+ <line num="2345" type="stmt" count="0"/>
3067
+ <line num="2347" type="stmt" count="0"/>
3068
  <line num="2350" type="stmt" count="0"/>
3069
+ <line num="2351" type="stmt" count="0"/>
3070
+ <line num="2360" type="method" name="boldgrid_backup_now_callback" visibility="public" complexity="10" crap="110" count="0"/>
3071
  <line num="2363" type="stmt" count="0"/>
3072
  <line num="2364" type="stmt" count="0"/>
3073
+ <line num="2365" type="stmt" count="0"/>
3074
  <line num="2367" type="stmt" count="0"/>
3075
  <line num="2368" type="stmt" count="0"/>
3076
+ <line num="2369" type="stmt" count="0"/>
3077
  <line num="2372" type="stmt" count="0"/>
3078
  <line num="2373" type="stmt" count="0"/>
3079
+ <line num="2374" type="stmt" count="0"/>
3080
  <line num="2376" type="stmt" count="0"/>
3081
  <line num="2377" type="stmt" count="0"/>
3082
+ <line num="2378" type="stmt" count="0"/>
3083
+ <line num="2380" type="stmt" count="0"/>
3084
  <line num="2382" type="stmt" count="0"/>
3085
  <line num="2383" type="stmt" count="0"/>
3086
+ <line num="2384" type="stmt" count="0"/>
3087
  <line num="2386" type="stmt" count="0"/>
3088
+ <line num="2387" type="stmt" count="0"/>
3089
+ <line num="2389" type="stmt" count="0"/>
3090
  <line num="2392" type="stmt" count="0"/>
3091
  <line num="2393" type="stmt" count="0"/>
3092
+ <line num="2394" type="stmt" count="0"/>
3093
  <line num="2396" type="stmt" count="0"/>
3094
  <line num="2397" type="stmt" count="0"/>
3095
+ <line num="2398" type="stmt" count="0"/>
3096
  <line num="2407" type="stmt" count="0"/>
3097
+ <line num="2408" type="stmt" count="0"/>
3098
+ <line num="2420" type="method" name="download_archive_file_callback" visibility="public" complexity="10" crap="110" count="0"/>
3099
+ <line num="2422" type="stmt" count="0"/>
3100
  <line num="2425" type="stmt" count="0"/>
3101
  <line num="2426" type="stmt" count="0"/>
3102
  <line num="2427" type="stmt" count="0"/>
3103
+ <line num="2428" type="stmt" count="0"/>
3104
  <line num="2431" type="stmt" count="0"/>
3105
  <line num="2432" type="stmt" count="0"/>
3106
  <line num="2433" type="stmt" count="0"/>
3107
  <line num="2434" type="stmt" count="0"/>
3108
+ <line num="2435" type="stmt" count="0"/>
3109
  <line num="2439" type="stmt" count="0"/>
3110
  <line num="2440" type="stmt" count="0"/>
3111
  <line num="2441" type="stmt" count="0"/>
3112
  <line num="2442" type="stmt" count="0"/>
3113
+ <line num="2443" type="stmt" count="0"/>
3114
+ <line num="2447" type="stmt" count="0"/>
3115
  <line num="2450" type="stmt" count="0"/>
3116
  <line num="2451" type="stmt" count="0"/>
3117
  <line num="2452" type="stmt" count="0"/>
3118
+ <line num="2453" type="stmt" count="0"/>
3119
+ <line num="2456" type="stmt" count="0"/>
3120
  <line num="2459" type="stmt" count="0"/>
3121
  <line num="2460" type="stmt" count="0"/>
3122
  <line num="2461" type="stmt" count="0"/>
3123
+ <line num="2462" type="stmt" count="0"/>
3124
  <line num="2466" type="stmt" count="0"/>
3125
  <line num="2467" type="stmt" count="0"/>
3126
+ <line num="2468" type="stmt" count="0"/>
3127
  <line num="2471" type="stmt" count="0"/>
3128
  <line num="2472" type="stmt" count="0"/>
3129
  <line num="2473" type="stmt" count="0"/>
3130
+ <line num="2474" type="stmt" count="0"/>
3131
+ <line num="2476" type="stmt" count="0"/>
3132
+ <line num="2478" type="stmt" count="0"/>
3133
  <line num="2480" type="stmt" count="0"/>
3134
  <line num="2481" type="stmt" count="0"/>
3135
+ <line num="2482" type="stmt" count="0"/>
3136
  <line num="2485" type="stmt" count="0"/>
3137
+ <line num="2486" type="stmt" count="0"/>
3138
+ <line num="2496" type="method" name="page_backup_test" visibility="public" complexity="6" crap="42" count="0"/>
3139
+ <line num="2498" type="stmt" count="0"/>
3140
+ <line num="2501" type="stmt" count="0"/>
3141
+ <line num="2504" type="stmt" count="0"/>
3142
+ <line num="2507" type="stmt" count="0"/>
3143
+ <line num="2510" type="stmt" count="0"/>
3144
+ <line num="2512" type="stmt" count="0"/>
3145
+ <line num="2515" type="stmt" count="0"/>
3146
+ <line num="2518" type="stmt" count="0"/>
3147
+ <line num="2521" type="stmt" count="0"/>
3148
+ <line num="2524" type="stmt" count="0"/>
3149
+ <line num="2527" type="stmt" count="0"/>
3150
+ <line num="2529" type="stmt" count="0"/>
3151
  <line num="2537" type="stmt" count="0"/>
3152
  <line num="2538" type="stmt" count="0"/>
3153
  <line num="2539" type="stmt" count="0"/>
3154
  <line num="2540" type="stmt" count="0"/>
3155
+ <line num="2541" type="stmt" count="0"/>
3156
  <line num="2544" type="stmt" count="0"/>
3157
  <line num="2545" type="stmt" count="0"/>
3158
  <line num="2546" type="stmt" count="0"/>
3160
  <line num="2548" type="stmt" count="0"/>
3161
  <line num="2549" type="stmt" count="0"/>
3162
  <line num="2550" type="stmt" count="0"/>
3163
+ <line num="2551" type="stmt" count="0"/>
3164
+ <line num="2553" type="stmt" count="0"/>
3165
  <line num="2556" type="stmt" count="0"/>
3166
  <line num="2557" type="stmt" count="0"/>
3167
  <line num="2558" type="stmt" count="0"/>
3168
  <line num="2559" type="stmt" count="0"/>
3169
  <line num="2560" type="stmt" count="0"/>
3170
+ <line num="2561" type="stmt" count="0"/>
3171
  <line num="2564" type="stmt" count="0"/>
3172
+ <line num="2565" type="stmt" count="0"/>
3173
+ <line num="2580" type="method" name="set_doing_cron" visibility="public" complexity="3" crap="3" count="17"/>
3174
  <line num="2581" type="stmt" count="17"/>
3175
+ <line num="2582" type="stmt" count="17"/>
3176
+ <line num="2589" type="method" name="set_lang" visibility="public" complexity="1" crap="1" count="17"/>
3177
+ <line num="2594" type="stmt" count="17"/>
3178
  <line num="2596" type="stmt" count="17"/>
3179
  <line num="2597" type="stmt" count="17"/>
3180
  <line num="2598" type="stmt" count="17"/>
3181
  <line num="2599" type="stmt" count="17"/>
3182
  <line num="2600" type="stmt" count="17"/>
3183
+ <line num="2601" type="stmt" count="17"/>
3184
  <line num="2603" type="stmt" count="17"/>
3185
+ <line num="2604" type="stmt" count="17"/>
3186
  <line num="2606" type="stmt" count="17"/>
3187
  <line num="2607" type="stmt" count="17"/>
3188
  <line num="2608" type="stmt" count="17"/>
3189
  <line num="2609" type="stmt" count="17"/>
3190
  <line num="2610" type="stmt" count="17"/>
3191
+ <line num="2611" type="stmt" count="17"/>
3192
  <line num="2613" type="stmt" count="17"/>
3193
  <line num="2614" type="stmt" count="17"/>
3194
+ <line num="2615" type="stmt" count="17"/>
3195
+ <line num="2621" type="stmt" count="17"/>
3196
  <line num="2623" type="stmt" count="17"/>
3197
  <line num="2624" type="stmt" count="17"/>
3198
  <line num="2625" type="stmt" count="17"/>
3199
  <line num="2626" type="stmt" count="17"/>
3200
+ <line num="2627" type="stmt" count="17"/>
3201
+ <line num="2629" type="stmt" count="17"/>
3202
  <line num="2632" type="stmt" count="17"/>
3203
+ <line num="2633" type="stmt" count="17"/>
3204
+ <line num="2635" type="stmt" count="17"/>
3205
+ <line num="2637" type="stmt" count="17"/>
3206
+ <line num="2649" type="method" name="set_time_limit" visibility="public" complexity="2" crap="2" count="3"/>
3207
+ <line num="2650" type="stmt" count="3"/>
3208
  <line num="2652" type="stmt" count="3"/>
3209
+ <line num="2653" type="stmt" count="3"/>
3210
+ <line num="2660" type="method" name="wp_ajax_restore" visibility="public" complexity="6" crap="42" count="0"/>
3211
  <line num="2661" type="stmt" count="0"/>
3212
+ <line num="2662" type="stmt" count="0"/>
3213
  <line num="2665" type="stmt" count="0"/>
3214
  <line num="2666" type="stmt" count="0"/>
3215
+ <line num="2667" type="stmt" count="0"/>
3216
  <line num="2669" type="stmt" count="0"/>
3217
  <line num="2670" type="stmt" count="0"/>
3218
+ <line num="2671" type="stmt" count="0"/>
3219
  <line num="2674" type="stmt" count="0"/>
3220
  <line num="2675" type="stmt" count="0"/>
3221
+ <line num="2676" type="stmt" count="0"/>
3222
  <line num="2678" type="stmt" count="0"/>
3223
  <line num="2679" type="stmt" count="0"/>
3224
+ <line num="2680" type="stmt" count="0"/>
3225
+ <line num="2682" type="stmt" count="0"/>
3226
  <line num="2695" type="stmt" count="0"/>
3227
+ <line num="2696" type="stmt" count="0"/>
3228
  <line num="2698" type="stmt" count="0"/>
3229
  <line num="2699" type="stmt" count="0"/>
3230
  <line num="2700" type="stmt" count="0"/>
3231
  <line num="2701" type="stmt" count="0"/>
3232
+ <line num="2702" type="stmt" count="0"/>
3233
  <line num="2704" type="stmt" count="0"/>
3234
  <line num="2705" type="stmt" count="0"/>
3235
  <line num="2706" type="stmt" count="0"/>
3236
+ <line num="2707" type="stmt" count="0"/>
3237
+ <line num="2709" type="stmt" count="0"/>
3238
  <line num="2711" type="stmt" count="0"/>
3239
+ <line num="2712" type="stmt" count="0"/>
3240
+ <line num="2728" type="method" name="boldgrid_backup_now_auto" visibility="public" complexity="4" crap="20" count="0"/>
3241
+ <line num="2730" type="stmt" count="0"/>
3242
  <line num="2733" type="stmt" count="0"/>
3243
+ <line num="2734" type="stmt" count="0"/>
3244
+ <line num="2738" type="stmt" count="0"/>
3245
  <line num="2741" type="stmt" count="0"/>
3246
+ <line num="2742" type="stmt" count="0"/>
3247
  <line num="2746" type="stmt" count="0"/>
3248
+ <line num="2747" type="stmt" count="0"/>
3249
+ <line num="2758" type="method" name="enforce_retention" visibility="public" complexity="8" crap="22.91" count="3"/>
3250
+ <line num="2760" type="stmt" count="3"/>
3251
+ <line num="2762" type="stmt" count="3"/>
3252
  <line num="2765" type="stmt" count="3"/>
3253
  <line num="2766" type="stmt" count="3"/>
3254
+ <line num="2767" type="stmt" count="3"/>
3255
  <line num="2768" type="stmt" count="0"/>
3256
+ <line num="2769" type="stmt" count="0"/>
3257
  <line num="2770" type="stmt" count="3"/>
3258
+ <line num="2771" type="stmt" count="3"/>
3259
+ <line num="2774" type="stmt" count="3"/>
3260
  <line num="2777" type="stmt" count="3"/>
3261
+ <line num="2778" type="stmt" count="3"/>
3262
+ <line num="2782" type="stmt" count="0"/>
3263
+ <line num="2785" type="stmt" count="0"/>
3264
+ <line num="2788" type="stmt" count="0"/>
3265
  <line num="2791" type="stmt" count="0"/>
3266
  <line num="2792" type="stmt" count="0"/>
3267
+ <line num="2793" type="stmt" count="0"/>
3268
  <line num="2796" type="stmt" count="0"/>
3269
+ <line num="2797" type="stmt" count="0"/>
3270
+ <line num="2799" type="stmt" count="0"/>
3271
+ <line num="2809" type="stmt" count="0"/>
3272
+ <line num="2812" type="stmt" count="0"/>
3273
  <line num="2815" type="stmt" count="0"/>
3274
  <line num="2816" type="stmt" count="0"/>
3275
+ <line num="2817" type="stmt" count="0"/>
3276
+ <metrics loc="2818" ncloc="1417" classes="1" methods="28" coveredmethods="4" conditionals="0" coveredconditionals="0" statements="986" coveredstatements="433" elements="1014" coveredelements="437"/>
3277
  </file>
3278
  <file name="/home/travis/build/BoldGrid/boldgrid-backup/admin/class-boldgrid-backup-admin-cron-log.php">
3279
  <class name="Boldgrid_Backup_Admin_Cron_Log" namespace="global" fullPackage="Boldgrid.Backup.Admin.Cron">
4919
  </file>
4920
  <file name="/home/travis/build/BoldGrid/boldgrid-backup/admin/class-boldgrid-backup-admin-notice.php">
4921
  <class name="Boldgrid_Backup_Admin_Notice" namespace="global" fullPackage="Boldgrid.Backup.Admin">
4922
+ <metrics complexity="21" methods="11" coveredmethods="1" conditionals="0" coveredconditionals="0" statements="84" coveredstatements="2" elements="95" coveredelements="3"/>
4923
  </class>
4924
  <line num="58" type="method" name="__construct" visibility="public" complexity="1" crap="1" count="17"/>
4925
  <line num="59" type="stmt" count="17"/>
5012
  <line num="275" type="stmt" count="0"/>
5013
  <line num="276" type="stmt" count="0"/>
5014
  <line num="277" type="stmt" count="0"/>
5015
+ <line num="279" type="stmt" count="0"/>
5016
+ <line num="281" type="stmt" count="0"/>
5017
  <line num="282" type="stmt" count="0"/>
5018
  <line num="283" type="stmt" count="0"/>
5019
+ <metrics loc="284" ncloc="149" classes="1" methods="11" coveredmethods="1" conditionals="0" coveredconditionals="0" statements="84" coveredstatements="2" elements="95" coveredelements="3"/>
 
5020
  </file>
5021
  <file name="/home/travis/build/BoldGrid/boldgrid-backup/admin/class-boldgrid-backup-admin-plugins.php">
5022
  <class name="Boldgrid_Backup_Admin_Plugins" namespace="global" fullPackage="Boldgrid.Backup.Admin">
8000
  <line num="79" type="stmt" count="0"/>
8001
  <line num="81" type="stmt" count="0"/>
8002
  <line num="83" type="stmt" count="0"/>
 
8003
  <line num="87" type="stmt" count="0"/>
8004
  <line num="88" type="stmt" count="0"/>
8005
+ <line num="89" type="stmt" count="0"/>
8006
+ <line num="91" type="stmt" count="0"/>
8007
+ <line num="93" type="stmt" count="0"/>
8008
+ <line num="95" type="stmt" count="0"/>
8009
  <line num="97" type="stmt" count="0"/>
8010
  <line num="98" type="stmt" count="0"/>
8011
  <line num="99" type="stmt" count="0"/>
8012
+ <line num="100" type="stmt" count="0"/>
8013
+ <line num="102" type="stmt" count="0"/>
8014
+ <line num="104" type="stmt" count="0"/>
8015
+ <line num="106" type="stmt" count="0"/>
8016
  <line num="108" type="stmt" count="0"/>
8017
+ <line num="109" type="stmt" count="0"/>
8018
+ <line num="111" type="stmt" count="0"/>
8019
  <line num="113" type="stmt" count="0"/>
8020
+ <line num="114" type="stmt" count="0"/>
8021
+ <line num="116" type="stmt" count="0"/>
8022
+ <line num="118" type="stmt" count="0"/>
8023
+ <line num="120" type="stmt" count="0"/>
8024
+ <metrics loc="120" ncloc="100" classes="0" methods="0" coveredmethods="0" conditionals="0" coveredconditionals="0" statements="70" coveredstatements="0" elements="70" coveredelements="0"/>
8025
  </file>
8026
  <file name="/home/travis/build/BoldGrid/boldgrid-backup/admin/partials/archives/note-pre-backup.php">
8027
  <line num="17" type="stmt" count="0"/>
8211
  <line num="169" type="stmt" count="0"/>
8212
  <line num="170" type="stmt" count="0"/>
8213
  <line num="171" type="stmt" count="0"/>
8214
+ <line num="172" type="stmt" count="0"/>
8215
  <line num="173" type="stmt" count="0"/>
 
8216
  <line num="175" type="stmt" count="0"/>
8217
  <line num="176" type="stmt" count="0"/>
8218
  <line num="177" type="stmt" count="0"/>
8226
  <line num="185" type="stmt" count="0"/>
8227
  <line num="186" type="stmt" count="0"/>
8228
  <line num="187" type="stmt" count="0"/>
8229
+ <line num="188" type="stmt" count="0"/>
8230
  <line num="189" type="stmt" count="0"/>
 
8231
  <line num="191" type="stmt" count="0"/>
8232
  <line num="192" type="stmt" count="0"/>
8233
  <line num="193" type="stmt" count="0"/>
8239
  <line num="199" type="stmt" count="0"/>
8240
  <line num="200" type="stmt" count="0"/>
8241
  <line num="201" type="stmt" count="0"/>
8242
+ <line num="202" type="stmt" count="0"/>
8243
  <line num="203" type="stmt" count="0"/>
 
8244
  <line num="205" type="stmt" count="0"/>
8245
  <line num="206" type="stmt" count="0"/>
8246
  <line num="207" type="stmt" count="0"/>
8263
  <line num="224" type="stmt" count="0"/>
8264
  <line num="225" type="stmt" count="0"/>
8265
  <line num="226" type="stmt" count="0"/>
8266
+ <line num="227" type="stmt" count="0"/>
8267
  <line num="228" type="stmt" count="0"/>
 
8268
  <line num="230" type="stmt" count="0"/>
8269
  <line num="231" type="stmt" count="0"/>
8270
  <line num="232" type="stmt" count="0"/>
8287
  <line num="249" type="stmt" count="0"/>
8288
  <line num="250" type="stmt" count="0"/>
8289
  <line num="251" type="stmt" count="0"/>
8290
+ <line num="252" type="stmt" count="0"/>
8291
  <line num="253" type="stmt" count="0"/>
 
8292
  <line num="255" type="stmt" count="0"/>
8293
  <line num="256" type="stmt" count="0"/>
8294
  <line num="257" type="stmt" count="0"/>
8311
  <line num="274" type="stmt" count="0"/>
8312
  <line num="275" type="stmt" count="0"/>
8313
  <line num="276" type="stmt" count="0"/>
8314
+ <line num="277" type="stmt" count="0"/>
8315
  <line num="278" type="stmt" count="0"/>
 
8316
  <line num="280" type="stmt" count="0"/>
8317
  <line num="281" type="stmt" count="0"/>
8318
  <line num="282" type="stmt" count="0"/>
8319
  <line num="283" type="stmt" count="0"/>
8320
  <line num="284" type="stmt" count="0"/>
8321
  <line num="285" type="stmt" count="0"/>
8322
+ <line num="286" type="stmt" count="0"/>
8323
  <line num="287" type="stmt" count="0"/>
 
8324
  <line num="289" type="stmt" count="0"/>
8325
  <line num="290" type="stmt" count="0"/>
8326
  <line num="291" type="stmt" count="0"/>
8335
  <line num="300" type="stmt" count="0"/>
8336
  <line num="301" type="stmt" count="0"/>
8337
  <line num="302" type="stmt" count="0"/>
8338
+ <line num="303" type="stmt" count="0"/>
8339
  <line num="304" type="stmt" count="0"/>
 
8340
  <line num="306" type="stmt" count="0"/>
8341
  <line num="307" type="stmt" count="0"/>
8342
  <line num="308" type="stmt" count="0"/>
8348
  <line num="314" type="stmt" count="0"/>
8349
  <line num="315" type="stmt" count="0"/>
8350
  <line num="316" type="stmt" count="0"/>
8351
+ <line num="317" type="stmt" count="0"/>
8352
  <line num="318" type="stmt" count="0"/>
 
8353
  <line num="320" type="stmt" count="0"/>
8354
  <line num="321" type="stmt" count="0"/>
8355
  <line num="322" type="stmt" count="0"/>
8356
  <line num="323" type="stmt" count="0"/>
8357
  <line num="324" type="stmt" count="0"/>
8358
+ <line num="325" type="stmt" count="0"/>
8359
  <line num="326" type="stmt" count="0"/>
 
8360
  <line num="328" type="stmt" count="0"/>
8361
  <line num="329" type="stmt" count="0"/>
8362
  <line num="330" type="stmt" count="0"/>
8383
  <line num="351" type="stmt" count="0"/>
8384
  <line num="352" type="stmt" count="0"/>
8385
  <line num="353" type="stmt" count="0"/>
8386
+ <line num="354" type="stmt" count="0"/>
8387
+ <line num="355" type="stmt" count="0"/>
8388
  <line num="363" type="stmt" count="0"/>
8389
  <line num="364" type="stmt" count="0"/>
8390
  <line num="365" type="stmt" count="0"/>
8397
  <line num="372" type="stmt" count="0"/>
8398
  <line num="373" type="stmt" count="0"/>
8399
  <line num="374" type="stmt" count="0"/>
8400
+ <line num="375" type="stmt" count="0"/>
8401
  <line num="376" type="stmt" count="0"/>
8402
  <line num="378" type="stmt" count="0"/>
 
8403
  <line num="380" type="stmt" count="0"/>
8404
  <line num="381" type="stmt" count="0"/>
8405
  <line num="382" type="stmt" count="0"/>
8406
  <line num="383" type="stmt" count="0"/>
8407
  <line num="384" type="stmt" count="0"/>
8408
+ <line num="385" type="stmt" count="0"/>
8409
  <line num="386" type="stmt" count="0"/>
 
8410
  <line num="388" type="stmt" count="0"/>
8411
  <line num="389" type="stmt" count="0"/>
8412
  <line num="390" type="stmt" count="0"/>
8418
  <line num="396" type="stmt" count="0"/>
8419
  <line num="397" type="stmt" count="0"/>
8420
  <line num="398" type="stmt" count="0"/>
8421
+ <line num="399" type="stmt" count="0"/>
8422
  <line num="400" type="stmt" count="0"/>
8423
  <line num="402" type="stmt" count="0"/>
 
8424
  <line num="404" type="stmt" count="0"/>
8425
  <line num="405" type="stmt" count="0"/>
8426
  <line num="406" type="stmt" count="0"/>
8433
  <line num="413" type="stmt" count="0"/>
8434
  <line num="414" type="stmt" count="0"/>
8435
  <line num="415" type="stmt" count="0"/>
8436
+ <line num="416" type="stmt" count="0"/>
8437
  <line num="417" type="stmt" count="0"/>
8438
+ <line num="419" type="stmt" count="0"/>
8439
+ <metrics loc="419" ncloc="351" classes="0" methods="0" coveredmethods="0" conditionals="0" coveredconditionals="0" statements="358" coveredstatements="0" elements="358" coveredelements="0"/>
8440
  </file>
8441
  <file name="/home/travis/build/BoldGrid/boldgrid-backup/admin/partials/boldgrid-backup-admin-backup-button.php">
8442
  <line num="19" type="stmt" count="0"/>
72625
  <metrics loc="445" ncloc="281" classes="1" methods="21" coveredmethods="0" conditionals="0" coveredconditionals="0" statements="216" coveredstatements="0" elements="237" coveredelements="0"/>
72626
  </file>
72627
  <file name="/home/travis/build/BoldGrid/boldgrid-backup/vendor/composer/autoload_static.php">
72628
+ <class name="ComposerStaticInit563306b227363411fb4b78c2a9ad3c91" namespace="Composer\Autoload">
72629
  <metrics complexity="2" methods="2" coveredmethods="0" conditionals="0" coveredconditionals="0" statements="5" coveredstatements="0" elements="7" coveredelements="0"/>
72630
  </class>
72631
  <line num="91" type="method" name="getInitializer" visibility="public" complexity="1" crap="2" count="0"/>
72717
  <metrics loc="12" ncloc="10" classes="0" methods="0" coveredmethods="0" conditionals="0" coveredconditionals="0" statements="7" coveredstatements="0" elements="7" coveredelements="0"/>
72718
  </file>
72719
  <file name="/home/travis/build/BoldGrid/boldgrid-backup/vendor/composer/autoload_real.php">
72720
+ <class name="ComposerAutoloaderInit563306b227363411fb4b78c2a9ad3c91" namespace="global">
72721
  <metrics complexity="13" methods="2" coveredmethods="0" conditionals="0" coveredconditionals="0" statements="41" coveredstatements="0" elements="43" coveredelements="0"/>
72722
  </class>
72723
  <line num="9" type="method" name="loadClassLoader" visibility="public" complexity="2" crap="6" count="0"/>
91717
  <line num="16" type="stmt" count="0"/>
91718
  <metrics loc="16" ncloc="9" classes="0" methods="0" coveredmethods="0" conditionals="0" coveredconditionals="0" statements="8" coveredstatements="0" elements="8" coveredelements="0"/>
91719
  </file>
91720
+ <metrics files="905" loc="182810" ncloc="111927" classes="818" methods="3307" coveredmethods="167" conditionals="0" coveredconditionals="0" statements="82832" coveredstatements="2747" elements="86139" coveredelements="2914"/>
91721
  </project>
91722
  </coverage>
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit68bb734f000af454209f541ed82088d6::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit563306b227363411fb4b78c2a9ad3c91::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit68bb734f000af454209f541ed82088d6
6
  {
7
  private static $loader;
8
 
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit68bb734f000af454209f541ed82088d6
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit68bb734f000af454209f541ed82088d6', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit68bb734f000af454209f541ed82088d6', 'loadClassLoader'));
25
 
26
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
  if ($useStaticLoader) {
28
  require_once __DIR__ . '/autoload_static.php';
29
 
30
- call_user_func(\Composer\Autoload\ComposerStaticInit68bb734f000af454209f541ed82088d6::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
@@ -48,19 +48,19 @@ class ComposerAutoloaderInit68bb734f000af454209f541ed82088d6
48
  $loader->register(true);
49
 
50
  if ($useStaticLoader) {
51
- $includeFiles = Composer\Autoload\ComposerStaticInit68bb734f000af454209f541ed82088d6::$files;
52
  } else {
53
  $includeFiles = require __DIR__ . '/autoload_files.php';
54
  }
55
  foreach ($includeFiles as $fileIdentifier => $file) {
56
- composerRequire68bb734f000af454209f541ed82088d6($fileIdentifier, $file);
57
  }
58
 
59
  return $loader;
60
  }
61
  }
62
 
63
- function composerRequire68bb734f000af454209f541ed82088d6($fileIdentifier, $file)
64
  {
65
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
66
  require $file;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit563306b227363411fb4b78c2a9ad3c91
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit563306b227363411fb4b78c2a9ad3c91', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit563306b227363411fb4b78c2a9ad3c91', 'loadClassLoader'));
25
 
26
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
  if ($useStaticLoader) {
28
  require_once __DIR__ . '/autoload_static.php';
29
 
30
+ call_user_func(\Composer\Autoload\ComposerStaticInit563306b227363411fb4b78c2a9ad3c91::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
48
  $loader->register(true);
49
 
50
  if ($useStaticLoader) {
51
+ $includeFiles = Composer\Autoload\ComposerStaticInit563306b227363411fb4b78c2a9ad3c91::$files;
52
  } else {
53
  $includeFiles = require __DIR__ . '/autoload_files.php';
54
  }
55
  foreach ($includeFiles as $fileIdentifier => $file) {
56
+ composerRequire563306b227363411fb4b78c2a9ad3c91($fileIdentifier, $file);
57
  }
58
 
59
  return $loader;
60
  }
61
  }
62
 
63
+ function composerRequire563306b227363411fb4b78c2a9ad3c91($fileIdentifier, $file)
64
  {
65
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
66
  require $file;
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit68bb734f000af454209f541ed82088d6
8
  {
9
  public static $files = array (
10
  'decc78cc4436b1292c6c0d151b19445c' => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib/bootstrap.php',
@@ -91,9 +91,9 @@ class ComposerStaticInit68bb734f000af454209f541ed82088d6
91
  public static function getInitializer(ClassLoader $loader)
92
  {
93
  return \Closure::bind(function () use ($loader) {
94
- $loader->prefixLengthsPsr4 = ComposerStaticInit68bb734f000af454209f541ed82088d6::$prefixLengthsPsr4;
95
- $loader->prefixDirsPsr4 = ComposerStaticInit68bb734f000af454209f541ed82088d6::$prefixDirsPsr4;
96
- $loader->classMap = ComposerStaticInit68bb734f000af454209f541ed82088d6::$classMap;
97
 
98
  }, null, ClassLoader::class);
99
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit563306b227363411fb4b78c2a9ad3c91
8
  {
9
  public static $files = array (
10
  'decc78cc4436b1292c6c0d151b19445c' => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib/bootstrap.php',
91
  public static function getInitializer(ClassLoader $loader)
92
  {
93
  return \Closure::bind(function () use ($loader) {
94
+ $loader->prefixLengthsPsr4 = ComposerStaticInit563306b227363411fb4b78c2a9ad3c91::$prefixLengthsPsr4;
95
+ $loader->prefixDirsPsr4 = ComposerStaticInit563306b227363411fb4b78c2a9ad3c91::$prefixDirsPsr4;
96
+ $loader->classMap = ComposerStaticInit563306b227363411fb4b78c2a9ad3c91::$classMap;
97
 
98
  }, null, ClassLoader::class);
99
  }