Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
thepassage.overlookedtracks.com
/
wp-content9
/
plugins
/
backupbuddy
/
controllers
/
ajax
/
Editing: set_backup_note.php
<?php /** * Used for setting a note on a backup archive in the backup listing. * * @package BackupBuddy */ backupbuddy_core::verifyAjaxAccess(); if ( ! isset( pb_backupbuddy::$classes['zipbuddy'] ) ) { require_once pb_backupbuddy::plugin_path() . '/lib/zipbuddy/zipbuddy.php'; pb_backupbuddy::$classes['zipbuddy'] = new pluginbuddy_zipbuddy( backupbuddy_core::getBackupDirectory() ); } $backup_file = backupbuddy_core::getBackupDirectory() . pb_backupbuddy::_POST( 'backup_file' ); $note = pb_backupbuddy::_POST( 'note' ); $note = preg_replace( '/[[:space:]]+/', ' ', $note ); $note = preg_replace( '/[^[:print:]]/', '', $note ); $note = substr( $note, 0, 200 ); // Returns true on success, else the error message. $old_comment = pb_backupbuddy::$classes['zipbuddy']->get_comment( $backup_file ); $comment = backupbuddy_core::normalize_comment_data( $old_comment ); $comment['note'] = $note; $comment_result = pb_backupbuddy::$classes['zipbuddy']->set_comment( $backup_file, $comment ); if ( true !== $comment_result ) { echo $comment_result; } else { echo '1'; } // Even if we cannot save the note into the archive file, store it in internal settings. $serial = backupbuddy_core::get_serial_from_file( $backup_file ); pb_backupbuddy::status( 'details', 'Loading fileoptions data instance #24...' ); require_once pb_backupbuddy::plugin_path() . '/classes/fileoptions.php'; $backup_options = new pb_backupbuddy_fileoptions( backupbuddy_core::getLogDirectory() . 'fileoptions/' . $serial . '.txt' ); $result = $backup_options->is_ok(); if ( true === $result ) { $backup_options->options['integrity']['comment'] = $note; $backup_options->save(); } die();
Save
Cancel