Skip to content

Commit

Permalink
Syntax highlighting
Browse files Browse the repository at this point in the history
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@124 7c3ca157-0c34-0410-bff1-cbf682f78f5c
  • Loading branch information
jakubvrana committed Jul 11, 2007
1 parent 2d8002b commit de5e18c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 2 additions & 0 deletions lang.inc.php
Expand Up @@ -104,6 +104,8 @@ function lang($idf = null, $number = null) {
'None of supported PHP extensions (%s) are available.' => 'Není dostupná žádná z podporovaných PHP extenzí (%s).',
'Sessions must be enabled.' => 'Session proměnné musí být povolené.',
'Session expired, please login again.' => 'Session vypršela, přihlašte se prosím znovu.',
'Text length' => 'Délka textů',
'Syntax highlighting' => 'Zvýrazňování syntaxe',
),
);
if (!isset($idf)) {
Expand Down
12 changes: 11 additions & 1 deletion sql.inc.php
@@ -1,4 +1,8 @@
<?php
if (isset($_POST["query"])) {
$_SESSION["highlight"] = $_POST["highlight"];
}

page_header(lang('SQL command'));

if ($_POST && $error) {
Expand Down Expand Up @@ -45,7 +49,13 @@

<form action="" method="post">
<p><textarea name="query" rows="20" cols="80"><?php echo htmlspecialchars($_POST["query"]); ?></textarea></p>
<p><input type="hidden" name="token" value="<?php echo $token; ?>" /><input type="submit" value="<?php echo lang('Execute'); ?>" /></p>
<p>
<input type="hidden" name="token" value="<?php echo $token; ?>" />
<input type="submit" value="<?php echo lang('Execute'); ?>" />
<script type="text/javascript">
document.write('<label for="highlight"><input type="checkbox" name="highlight" id="highlight" value="jush"<?php echo ($_SESSION["highlight"] == "jush" ? ' checked="checked"' : ''); ?> /><?php echo addcslashes(lang('Syntax highlighting'), "\r\n'\\"); ?></label>');
</script>
</p>
</form>

<?php
Expand Down

0 comments on commit de5e18c

Please sign in to comment.