adminerevo/adminer/scheme.inc.php

39 lines
1.2 KiB
PHP
Raw Permalink Normal View History

<?php
2013-05-08 15:43:15 +00:00
$row = $_POST;
if ($_POST && !$error) {
$link = preg_replace('~ns=[^&]*&~', '', ME) . "ns=";
if ($_POST["drop"]) {
query_redirect("DROP SCHEMA " . idf_escape($_GET["ns"]), $link, lang('Schema has been dropped.'));
} else {
2013-05-08 15:43:15 +00:00
$name = trim($row["name"]);
2011-09-10 11:06:59 +00:00
$link .= urlencode($name);
if ($_GET["ns"] == "") {
2011-09-10 11:06:59 +00:00
query_redirect("CREATE SCHEMA " . idf_escape($name), $link, lang('Schema has been created.'));
} elseif ($_GET["ns"] != $name) {
query_redirect("ALTER SCHEMA " . idf_escape($_GET["ns"]) . " RENAME TO " . idf_escape($name), $link, lang('Schema has been altered.')); //! sp_rename in MS SQL
} else {
redirect($link);
}
}
}
page_header($_GET["ns"] != "" ? lang('Alter schema') : lang('Create schema'), $error);
2011-08-08 16:23:32 +00:00
if (!$row) {
2013-05-08 15:43:15 +00:00
$row["name"] = $_GET["ns"];
}
?>
<form action="" method="post">
2013-01-31 05:35:51 +00:00
<p><input name="name" id="name" value="<?php echo h($row["name"]); ?>" autocapitalize="off">
2018-01-12 14:27:44 +00:00
<?php echo script("focus(qs('#name'));"); ?>
<input type="submit" value="<?php echo lang('Save'); ?>">
<?php
if ($_GET["ns"] != "") {
echo "<input type='submit' name='drop' value='" . lang('Drop') . "'>" . confirm(lang('Drop %s?', $_GET["ns"])) . "\n";
}
?>
2011-03-08 12:43:05 +00:00
<input type="hidden" name="token" value="<?php echo $token; ?>">
</form>