]> git.joonet.de Git - adminer.git/commitdiff
Separate function and value
authorjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Sun, 31 May 2009 19:54:30 +0000 (19:54 +0000)
committerjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Sun, 31 May 2009 19:54:30 +0000 (19:54 +0000)
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@632 7c3ca157-0c34-0410-bff1-cbf682f78f5c

call.inc.php
default.css
edit.inc.php
include/editing.inc.php

index 715a125109f50d14a871587a935b455718dd1be8..8974d946055c8002967c431a9e6c4336c647b056 100644 (file)
@@ -52,7 +52,7 @@ if ($in) {
        echo "<table cellspacing='0'>\n";
        foreach ($in as $key) {
                $field = $routine["fields"][$key];
-               echo "<tr><th>" . htmlspecialchars($field["field"]) . "</th><td>";
+               echo "<tr><th>" . htmlspecialchars($field["field"]) . "</th>";
                $value = $_POST["fields"][$key];
                if (strlen($value) && ($field["type"] == "enum" || $field["type"] == "set")) {
                        $value = intval($value);
index de1190454f9aad6eb03416996309966bf007d34f..e3d4c7acb71d867e896f069f701fa9ed837d8904 100644 (file)
@@ -23,6 +23,7 @@ code { background: #eee; }
 .binary { color: red; }
 .odd td { background: #F5F5F5; }
 .time { color: Silver; font-size: 70%; float: right; margin-top: -3em; }
+.function { text-align: right; }
 tr:hover td { background: #ddf; }
 thead tr:hover td { background: transparent; }
 #menu { position: absolute; margin: 10px 0 0; padding: 0 0 30px 0; top: 2em; left: 0; width: 19em; overflow: auto; overflow-y: hidden; white-space: nowrap; }
index 3db1db0024b55ed776dcb3a15f06eeb369ca66f2..c1963a523c9dfd5d3f69fe4831a62f383e3c8a2c 100644 (file)
@@ -66,7 +66,7 @@ if ($fields) {
        unset($create);
        echo "<table cellspacing='0'>\n";
        foreach ($fields as $name => $field) {
-               echo "<tr><th>" . htmlspecialchars($name) . "</th><td>";
+               echo "<tr><th>" . htmlspecialchars($name) . "</th>";
                $value = (!isset($row) ? $field["default"] :
                        (strlen($row[$name]) && ($field["type"] == "enum" || $field["type"] == "set") ? intval($row[$name]) :
                        ($_POST["clone"] && $field["auto_increment"] ? "" :
index 4d2074608c8bec0a318474d607519c71812c8a53..d71228f3d00698dd79da992471db3f508014fca7 100644 (file)
@@ -1,11 +1,10 @@
 <?php
-function input($name, $field, $value) {
+function input($name, $field, $value, $separator = "</td><td>") { //! pass empty separator if there are no functions in the whole table
        global $types;
        $name = htmlspecialchars(bracket_escape($name));
+       echo "<td" . ($separator ? " class='function'" : "") . ">";
        if ($field["type"] == "enum") {
-               if (isset($_GET["select"])) {
-                       echo ' <label><input type="radio" name="fields[' . $name . ']" value="-1" checked="checked" /><em>' . lang('original') . '</em></label>';
-               }
+               echo $separator . (isset($_GET["select"]) ? ' <label><input type="radio" name="fields[' . $name . ']" value="-1" checked="checked" /><em>' . lang('original') . '</em></label>' : "");
                if ($field["null"] || isset($_GET["default"])) {
                        echo ' <label><input type="radio" name="fields[' . $name . ']" value=""' . (($field["null"] ? isset($value) : strlen($value)) || isset($_GET["select"]) ? '' : ' checked="checked"') . ' />' . ($field["null"] ? '<em>NULL</em>' : '') . '</label>';
                }
@@ -33,9 +32,7 @@ function input($name, $field, $value) {
                if ($field["null"] || isset($_GET["default"])) {
                        array_unshift($options, "NULL");
                }
-               if (count($options) > 1 || isset($_GET["select"])) {
-                       echo '<select name="function[' . $name . ']">' . (isset($_GET["select"]) ? '<option value="orig">' . lang('original') . '</option>' : '') . optionlist($options, (isset($value) ? (string) $_POST["function"][$name] : null)) . '</select>';
-               }
+               echo (count($options) > 1 || isset($_GET["select"]) ? '<select name="function[' . $name . ']" tabindex="1">' . (isset($_GET["select"]) ? '<option value="orig">' . lang('original') . '</option>' : '') . optionlist($options, (isset($value) ? (string) $_POST["function"][$name] : null)) . '</select>' : "") . $separator;
                if ($field["type"] == "set") { //! 64 bits
                        preg_match_all("~'((?:[^']+|'')*)'~", $field["length"], $matches);
                        foreach ($matches[1] as $i => $val) {