1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-07 15:16:44 +02:00

Plugin for including date in export filename

This commit is contained in:
Jakub Vrana
2012-06-29 14:41:47 -07:00
parent f158d5e392
commit b78b0cd109
6 changed files with 40 additions and 7 deletions

15
plugins/dump-date.php Normal file
View 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()"));
}
}