mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-26 16:01:05 +00:00
55 lines
2.0 KiB
PHP
Executable File
55 lines
2.0 KiB
PHP
Executable File
<?php
|
|
$PROCEDURE = $_GET["procedure"];
|
|
$routine = (isset($_GET["function"]) ? "FUNCTION" : "PROCEDURE");
|
|
$row = $_POST;
|
|
$row["fields"] = (array) $row["fields"];
|
|
|
|
if ($_POST && !process_fields($row["fields"]) && !$error) {
|
|
$temp_name = "$row[name]_adminer_" . uniqid();
|
|
drop_create(
|
|
"DROP $routine " . idf_escape($PROCEDURE),
|
|
create_routine($routine, $row),
|
|
"DROP $routine " . idf_escape($row["name"]),
|
|
create_routine($routine, array("name" => $temp_name) + $row),
|
|
"DROP $routine " . idf_escape($temp_name),
|
|
substr(ME, 0, -1),
|
|
lang('Routine has been dropped.'),
|
|
lang('Routine has been altered.'),
|
|
lang('Routine has been created.'),
|
|
$PROCEDURE,
|
|
$row["name"]
|
|
);
|
|
}
|
|
|
|
page_header(($PROCEDURE != "" ? (isset($_GET["function"]) ? lang('Alter function') : lang('Alter procedure')) . ": " . h($PROCEDURE) : (isset($_GET["function"]) ? lang('Create function') : lang('Create procedure'))), $error);
|
|
|
|
if (!$_POST && $PROCEDURE != "") {
|
|
$row = routine($PROCEDURE, $routine);
|
|
$row["name"] = $PROCEDURE;
|
|
}
|
|
|
|
$collations = get_vals("SHOW CHARACTER SET");
|
|
sort($collations);
|
|
$routine_languages = routine_languages();
|
|
?>
|
|
|
|
<form action="" method="post" id="form">
|
|
<p><?php echo lang('Name'); ?>: <input name="name" value="<?php echo h($row["name"]); ?>" maxlength="64" autocapitalize="off">
|
|
<?php echo ($routine_languages ? lang('Language') . ": " . html_select("language", $routine_languages, $row["language"]) : ""); ?>
|
|
<input type="submit" value="<?php echo lang('Save'); ?>">
|
|
<table cellspacing="0" class="nowrap">
|
|
<?php
|
|
edit_fields($row["fields"], $collations, $routine);
|
|
if (isset($_GET["function"])) {
|
|
echo "<tr><td>" . lang('Return type');
|
|
edit_type("returns", $row["returns"], $collations);
|
|
}
|
|
?>
|
|
</table>
|
|
<p><?php textarea("definition", $row["definition"]); ?>
|
|
<p>
|
|
<input type="submit" value="<?php echo lang('Save'); ?>">
|
|
<?php if ($PROCEDURE != "") { ?><input type="submit" name="drop" value="<?php echo lang('Drop'); ?>"<?php echo confirm(); ?>><?php } ?>
|
|
<input type="hidden" name="token" value="<?php echo $token; ?>">
|
|
</form>
|