adminerevo/plugins/enum-option.php

42 lines
1.2 KiB
PHP
Raw Normal View History

2011-02-10 17:16:10 +00:00
<?php
/** Use <select><option> for enum edit instead of <input type="radio">
2015-09-08 16:23:25 +00:00
* @link https://www.adminer.org/plugins/#use
2017-02-27 12:43:33 +00:00
* @author Jakub Vrana, https://www.vrana.cz/
2018-01-14 10:03:54 +00:00
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
2024-03-23 17:21:42 +00:00
* @depreacted 4.8.4 is now default behavior
2011-02-10 17:16:10 +00:00
*/
class AdminerEnumOption {
2024-03-23 17:21:42 +00:00
2011-02-10 17:16:10 +00:00
function editInput($table, $field, $attrs, $value) {
if ($field["type"] == "enum") {
2018-02-07 11:42:46 +00:00
$options = array();
2011-02-10 17:16:10 +00:00
$selected = $value;
if (isset($_GET["select"])) {
2018-02-07 11:42:46 +00:00
$options[-1] = lang('original');
if ($selected === null) {
$selected = -1;
}
2011-02-10 17:16:10 +00:00
}
if ($field["null"]) {
2018-02-07 11:42:46 +00:00
$options[""] = "NULL";
2012-05-14 06:54:07 +00:00
if ($value === null && !isset($_GET["select"])) {
2011-02-10 17:16:10 +00:00
$selected = "";
}
}
2018-02-07 11:42:46 +00:00
$options[0] = lang('empty');
2011-02-10 17:16:10 +00:00
preg_match_all("~'((?:[^']|'')*)'~", $field["length"], $matches);
foreach ($matches[1] as $i => $val) {
$val = stripcslashes(str_replace("''", "'", $val));
$options[$i + 1] = $val;
if ($value === $val) {
$selected = $i + 1;
}
}
return "<select$attrs>" . optionlist($options, (string) $selected, 1) . "</select>"; // 1 - use keys
}
}
2024-03-23 17:21:42 +00:00
2011-02-10 17:16:10 +00:00
}