mirror of
https://github.com/vrana/adminer.git
synced 2025-08-13 18:14:07 +02:00
Plugin for including date in export filename
This commit is contained in:
15
plugins/dump-date.php
Normal file
15
plugins/dump-date.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
/** Include current date and time in export filename
|
||||
* @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 AdminerDumpDate {
|
||||
|
||||
function dumpFilename($identifier) {
|
||||
$connection = connection();
|
||||
return friendly_url(($identifier != "" ? $identifier : (SERVER != "" ? SERVER : "localhost")) . "-" . $connection->result("SELECT NOW()"));
|
||||
}
|
||||
|
||||
}
|
@@ -6,6 +6,8 @@
|
||||
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
|
||||
*/
|
||||
class AdminerDumpXml {
|
||||
/** @access protected */
|
||||
var $database = false;
|
||||
|
||||
function dumpFormat() {
|
||||
return array('xml' => 'XML');
|
||||
@@ -22,10 +24,9 @@ class AdminerDumpXml {
|
||||
}
|
||||
|
||||
function dumpData($table, $style, $query) {
|
||||
static $database = false;
|
||||
if ($_POST["format"] == "xml") {
|
||||
if (!$database) {
|
||||
$database = true;
|
||||
if (!$this->database) {
|
||||
$this->database = true;
|
||||
echo "<database name='" . h(DB) . "'>\n";
|
||||
register_shutdown_function(array($this, '_database'));
|
||||
}
|
||||
|
@@ -291,6 +291,11 @@ class AdminerPlugin extends Adminer {
|
||||
return $this->_applyPlugin(__FUNCTION__, $args);
|
||||
}
|
||||
|
||||
function dumpFilename() {
|
||||
$args = func_get_args();
|
||||
return $this->_applyPlugin(__FUNCTION__, $args);
|
||||
}
|
||||
|
||||
function dumpHeaders() {
|
||||
$args = func_get_args();
|
||||
return $this->_applyPlugin(__FUNCTION__, $args);
|
||||
|
Reference in New Issue
Block a user