File "multisite_export.php"

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

<?php


if ( pb_backupbuddy::_GET( 'backupbuddy_backup' ) == '' ) {
	
	pb_backupbuddy::$ui->title( 'Multisite: Export Site (EXPERIMENTAL)' );
	
	$view_data['backups'] = backupbuddy_core::backups_list( 'default', true ); // Second param true makes subsite mode only. Only lists backups for this subsite.
	
	// Load view.
	pb_backupbuddy::load_view( 'multisite_export', $view_data );
	
} // End if.


// Handle MS export through the normal backup mechanism.
$export_only = true;
require_once( 'backup.php' );


?>