adminerevo/adminer/scheme.inc.php

38 lines
1.2 KiB
PHP
Raw Normal View History

<?php
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 {
2011-09-10 11:06:59 +00:00
$name = trim($_POST["name"]);
$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
$row = $_POST;
if (!$row) {
$row = array("name" => $_GET["ns"]);
}
?>
<form action="" method="post">
2011-12-22 08:04:44 +00:00
<p><input id="name" name="name" value="<?php echo h($row["name"]); ?>">
<script type='text/javascript'>document.getElementById('name').focus();</script>
<input type="submit" value="<?php echo lang('Save'); ?>">
<?php
if ($_GET["ns"] != "") {
2010-10-18 21:57:39 +00:00
echo "<input type='submit' name='drop' value='" . lang('Drop') . "'" . confirm() . ">\n";
}
?>
2011-03-08 12:43:05 +00:00
<input type="hidden" name="token" value="<?php echo $token; ?>">
</form>