1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
<h1 class="header"><?php echo $this->title ?></h1>
<form name="sqlshell" action="<?php echo $this->action ?>" method="post">
<?php Horde_Util::pformInput() ?>
<input type="hidden" name="token" value="<?php echo $this->session->getToken() ?>" />
<div class="horde-content">
<?php if ($this->results): ?>
<?php if ($this->command): ?>
<h1 class="header"><?php echo _("Query") ?></h1>
<pre class="text"><?php echo $this->h($this->command) ?></pre>
<?php endif; ?>
<h1 class="header"><?php echo _("Results") ?></h1>
<?php if ($this->success): ?>
<p>
<strong><?php echo _("Success") ?></strong>
</p>
<?php elseif (isset($this->keys)): ?>
<table cellspacing="1" class="item striped">
<tr>
<?php foreach ($this->keys as $k): ?>
<th align="left"><?php echo $this->h($k) ?></th>
<?php endforeach; ?>
</tr>
<?php foreach ($this->rows as $v): ?>
<tr>
<?php foreach ($v as $v2): ?>
<td class="fixed"><?php echo $this->h($v2) ?></td>
<?php endforeach; ?>
</tr>
<?php endforeach; ?>
</table>
<?php endif; ?>
<?php endif; ?>
<?php if (count($this->q_cache)): ?>
<p>
<label for="query_cache" class="hidden"><?php echo ("Query cache") ?></label>
<select id="query_cache" name="query_cache" onchange="document.sqlshell.sql.value = document.sqlshell.query_cache[document.sqlshell.query_cache.selectedIndex].value;">
<?php foreach ($this->q_cache as $q): ?>
<option value="<?php echo $this->h($q) ?>"><?php echo $this->h($q) ?></option>
<?php endforeach; ?>
</select>
<input type="button" value="<?php echo _("Paste") ?>" onclick="document.sqlshell.sql.value = document.sqlshell.query_cache[document.sqlshell.query_cache.selectedIndex].value;">
<input type="button" value="<?php echo _("Run") ?>" onclick="document.sqlshell.sql.value = document.sqlshell.query_cache[document.sqlshell.query_cache.selectedIndex].value; document.sqlshell.submit();">
</p>
<?php endif; ?>
<p>
<label for="sql" class="hidden"><?php echo ("SQL Query") ?></label>
<textarea class="fixed" id="sql" name="sql" rows="10" cols="80"><?php echo $this->h($this->command) ?></textarea>
</p>
</div>
<p class="horde-form-buttons">
<input type="submit" class="horde-default" value="<?php echo _("Execute") ?>" />
<input type="button" value="<?php echo _("Clear Query") ?>" onclick="document.sqlshell.sql.value=''" />
<?php if (strlen($this->command)): ?>
<input type="reset" value="<?php echo _("Restore Last Query") ?>" />
<?php endif; ?>
<input type="submit" name="list-tables" value="<?php echo _("List Tables") ?>" />
<?php echo $this->hordeHelp('admin', 'admin-sqlshell') ?>
</p>
</form>
|