mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-25 23:41:04 +00:00
49 lines
2.4 KiB
PHP
49 lines
2.4 KiB
PHP
<?php
|
|
|
|
/** Display jQuery UI Timepicker for each date and datetime field
|
|
* @link https://www.adminer.org/plugins/#use
|
|
* @uses jQuery-Timepicker, http://trentrichardson.com/examples/timepicker/
|
|
* @uses jQuery UI: core, widget, mouse, slider, datepicker
|
|
* @author Jakub Vrana, https://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 AdminerEditCalendar {
|
|
/** @access protected */
|
|
var $prepend, $langPath;
|
|
|
|
/**
|
|
* @param string text to append before first calendar usage
|
|
* @param string path to language file, %s stands for language code
|
|
*/
|
|
function __construct($prepend = "<script type='text/javascript' src='jquery-ui/jquery.js'></script>\n<script type='text/javascript' src='jquery-ui/jquery-ui.js'></script>\n<script type='text/javascript' src='jquery-ui/jquery-ui-timepicker-addon.js'></script>\n<link rel='stylesheet' type='text/css' href='jquery-ui/jquery-ui.css'>\n", $langPath = "jquery-ui/i18n/jquery.ui.datepicker-%s.js") {
|
|
$this->prepend = $prepend;
|
|
$this->langPath = $langPath;
|
|
}
|
|
|
|
function head() {
|
|
echo $this->prepend;
|
|
if ($this->langPath && function_exists('get_lang')) { // since Adminer 3.2.0
|
|
$lang = get_lang();
|
|
$lang = ($lang == "zh" ? "zh-CN" : ($lang == "zh-tw" ? "zh-TW" : $lang));
|
|
if ($lang != "en" && file_exists(sprintf($this->langPath, $lang))) {
|
|
printf("<script type='text/javascript' src='$this->langPath'></script>\n", $lang);
|
|
echo "<script type='text/javascript'>jQuery(function () { jQuery.timepicker.setDefaults(jQuery.datepicker.regional['$lang']); });</script>\n";
|
|
}
|
|
}
|
|
}
|
|
|
|
function editInput($table, $field, $attrs, $value) {
|
|
if (preg_match("~date|time~", $field["type"])) {
|
|
$dateFormat = "changeYear: true, dateFormat: 'yy-mm-dd'"; //! yy-mm-dd regional
|
|
$timeFormat = "showSecond: true, timeFormat: 'HH:mm:ss.lcZ', timeInput: true";
|
|
return "<input id='fields-" . h($field["field"]) . "' value='" . h($value) . "'" . (@+$field["length"] ? " maxlength='" . (+$field["length"]) . "'" : "") . "$attrs><script type='text/javascript'>jQuery('#fields-" . js_escape($field["field"]) . "')."
|
|
. ($field["type"] == "time" ? "timepicker({ $timeFormat })"
|
|
: (preg_match("~time~", $field["type"]) ? "datetimepicker({ $dateFormat, $timeFormat })"
|
|
: "datepicker({ $dateFormat })"
|
|
)) . ";</script>";
|
|
}
|
|
}
|
|
|
|
}
|