adminerevo/plugins/dump-zip.php

45 lines
1.2 KiB
PHP
Raw Normal View History

2011-02-17 10:47:36 +00:00
<?php
/** Dump to ZIP format
2012-06-30 10:17:16 +00:00
* @link http://www.adminer.org/plugins/#use
2011-02-17 10:47:36 +00:00
* @uses ZipArchive, tempnam("")
* @author Jakub Vrana, http://www.vrana.cz/
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/
class AdminerDumpZip {
2011-08-11 15:06:42 +00:00
/** @access protected */
2012-06-29 21:09:44 +00:00
var $filename, $data;
2011-02-17 10:47:36 +00:00
function dumpOutput() {
if (!class_exists('ZipArchive')) {
return array();
}
return array('zip' => 'ZIP');
}
function _zip($string, $state) {
2012-06-29 21:09:44 +00:00
$this->data .= $string;
2011-02-17 10:47:36 +00:00
if ($state & PHP_OUTPUT_HANDLER_END) {
$zip = new ZipArchive;
$zipFile = tempnam("", "zip");
$zip->open($zipFile, ZipArchive::OVERWRITE); // php://output is not supported
2012-06-29 21:09:44 +00:00
$zip->addFromString($this->filename, $this->data);
2011-02-17 10:47:36 +00:00
$zip->close();
$return = file_get_contents($zipFile);
unlink($zipFile);
return $return;
}
return "";
}
function dumpHeaders($identifier, $multi_table = false) {
2011-02-18 18:26:23 +00:00
$this->filename = "$identifier." . ($multi_table && ereg("[ct]sv", $_POST["format"]) ? "tar" : $_POST["format"]);
2011-02-17 10:47:36 +00:00
if ($_POST["output"] == "zip") {
header("Content-Type: application/zip");
2012-06-29 21:09:44 +00:00
ob_start(array($this, '_zip'));
2011-02-17 10:47:36 +00:00
}
}
}