本文整理汇总了PHP中pb_backupbuddy_destinations::delete方法的典型用法代码示例。如果您正苦于以下问题:PHP pb_backupbuddy_destinations::delete方法的具体用法?PHP pb_backupbuddy_destinations::delete怎么用?PHP pb_backupbuddy_destinations::delete使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pb_backupbuddy_destinations
的用法示例。
在下文中一共展示了pb_backupbuddy_destinations::delete方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: run
public function run($arguments)
{
$arguments = Ithemes_Sync_Functions::merge_defaults($arguments, $this->default_arguments);
require_once pb_backupbuddy::plugin_path() . '/destinations/bootstrap.php';
$response = pb_backupbuddy_destinations::delete($arguments['id'], true);
if (true === $response) {
return array('api' => '0', 'status' => 'ok', 'message' => 'Destination deleted.');
} else {
return array('api' => '0', 'status' => 'error', 'message' => 'Error #384783783: Failure deleting destination.');
}
}
示例2: array
if ('' != pb_backupbuddy::_GET('cpy')) {
// Copy dropbox backups to the local backup files
pb_backupbuddy::alert('The remote file is now being copied to your local backups. If the backup gets marked as bad during copying, please wait a bit then click the `Refresh` icon to rescan after the transfer is complete.');
echo '<br>';
pb_backupbuddy::status('details', 'Scheduling Cron for creating Dropbox copy.');
backupbuddy_core::schedule_single_event(time(), pb_backupbuddy::cron_tag('process_destination_copy'), array($destination, pb_backupbuddy::_GET('cpy')));
spawn_cron(time() + 150);
// Adds > 60 seconds to get around once per minute cron running limit.
update_option('_transient_doing_cron', 0);
// Prevent cron-blocking for next item.
}
// Delete selected dropbox backup(s) from form submission.
if ('delete_backup' == pb_backupbuddy::_POST('bulk_action')) {
pb_backupbuddy::verify_nonce();
if (is_array(pb_backupbuddy::_POST('items'))) {
if (true === ($result = pb_backupbuddy_destinations::delete($destination, pb_backupbuddy::_POST('items')))) {
pb_backupbuddy::alert(__('Selected file(s) deleted.', 'it-l10n-backupbuddy'));
} else {
pb_backupbuddy::alert(__('Unable to delete one or more files. Details: ', 'it-l10n-backupbuddy') . $result);
}
echo '<br>';
}
}
$files_result = pb_backupbuddy_destinations::listFiles($destination);
$backup_files = array();
foreach ((array) $files_result['contents'] as $file) {
// Loop through files looking for backups.
if ($file['is_dir'] == '1') {
// Do NOT display subdirectories.
continue;
}