File "backup_status.php"

Full Path: /var/www/bvnghean.vn/save_bvnghean.vn/wp-content/plugins/backupbuddy/controllers/ajax/backup_status.php
File size: 586 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
backupbuddy_core::verifyAjaxAccess();


// IMPORTANT: MUST provide 3rd param, backup serial ID, when using pb_backupbuddy::status() within this function for it to show for this backup.
$serial = trim( pb_backupbuddy::_POST( 'serial' ) );
$serial = str_replace( '/\\', '', $serial );

$initRetryCount = (int)trim( pb_backupbuddy::_POST( 'initwaitretrycount' ) );
$specialAction = pb_backupbuddy::_POST( 'specialAction' );
$sqlFile = pb_backupbuddy::_POST( 'sqlFile' );


backupbuddy_api::getBackupStatus( $serial, $specialAction, $initRetryCount, $sqlFile, $echo = true );


die();