This repository was archived by the owner on Feb 28, 2019. It is now read-only.
forked from deliciousbrains/sqlbuddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstructure.php
775 lines (597 loc) · 19 KB
/
structure.php
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
<?php
/*
SQL Buddy - Web based MySQL administration
http://www.sqlbuddy.com/
structure.php
- view/edit the structure of a table
MIT license
2008 Calvin Lough <http://calv.in>
*/
include "functions.php";
loginCheck();
requireDatabaseAndTableBeDefined();
if (isset($db))
$conn->selectDB($db);
if (isset($_POST)) {
// process form - add index
if (isset($_POST['INDEXTYPE']))
$indexType = $_POST['INDEXTYPE'];
if (isset($_POST['INDEXCOLUMNLIST']))
$indexColumnList = $_POST['INDEXCOLUMNLIST'];
if (isset($indexType) && isset($indexColumnList) && $indexType && $indexColumnList) {
$indexColumnList = implode("`, `", $indexColumnList);
$indexQuery = "ALTER TABLE `$table` ADD ";
if ($indexType == "INDEX")
$indexQuery .= "INDEX";
else if ($indexType == "UNIQUE")
$indexQuery .= "UNIQUE";
$indexQuery .= " (`" . $indexColumnList . "`)";
$conn->query($indexQuery) or ($dbError = $conn->error());
}
?>
<script type="text/javascript" authkey="<?php echo $requestKey; ?>" >
clearPanesOnLoad = true;
</script>
<?php
}
//run delete queries
if (isset($_POST['runQuery'])) {
$runQuery = $_POST['runQuery'];
$queryList = splitQueryText($runQuery);
foreach ($queryList as $query) {
if (trim($query) != "")
$conn->query($query) or ($dbError = $conn->error());
}
}
if (isset($dbError)) {
echo '<div class="errormessage" style="margin: 6px 12px 10px; width: 602px"><strong>' . __("Error performing operation") . '</strong><p>' . $dbError . '</p></div>';
}
$structureSql = $conn->describeTable($table);
if ($conn->getAdapter() == "mysql" && $conn->isResultSet($structureSql)) {
?>
<table cellpadding="0" width="100%" class="structure" style="margin: 2px 7px 7px">
<tr>
<td valign="top" width="575">
<table class="browsenav">
<tr>
<td class="options">
<?php
echo '<strong>' . __("Columns") . '</strong> ';
echo __("Select") . ': <a onclick="checkAll()">' . __("All") . '</a> <a onclick="checkNone()">' . __("None") . '</a>';
echo ' ' . __("With selected") . ': <a onclick="editSelectedRows()">' . __("Edit") . '</a> <a onclick="deleteSelectedColumns()">' . __("Delete") . '</a>';
?>
</td>
</tr>
</table>
<?php
echo '<div class="grid">';
echo '<div class="emptyvoid"> </div>';
echo '<div class="gridheader impotent">';
echo '<div class="gridheaderinner">';
echo '<table cellpadding="0" cellspacing="0">';
echo '<tr>';
echo '<td><div column="1" class="headertitle column1">' . __("Name") . '</div></td>';
echo '<td><div class="columnresizer"></div></td>';
echo '<td><div column="2" class="headertitle column2">' . __("Type") . '</div></td>';
echo '<td><div class="columnresizer"></div></td>';
echo '<td><div column="3" class="headertitle column3">' . __("Default") . '</div></td>';
echo '<td><div class="columnresizer"></div></td>';
echo '</tr>';
echo '</table>';
echo '</div>';
echo '</div>';
echo '<div class="leftchecks" style="max-height: 300px">';
$m = 0;
while ($structureRow = $conn->fetchAssoc($structureSql)) {
echo '<dl class="manip';
if ($m % 2 == 1)
echo ' alternator';
else
echo ' alternator2';
echo '"><dt><input type="checkbox" class="check' . $m . '" onclick="rowClicked(' . $m++ . ')" querybuilder="' . $structureRow['Field'] . '" /></dt></dl>';
}
echo '</div>';
$structureSql = $conn->describeTable($table);
echo '<div class="gridscroll withchecks" style="overflow-x: hidden; max-height: 300px">';
$m = 0;
while ($structureRow = $conn->fetchAssoc($structureSql)) {
echo '<div class="row' . $m . ' browse';
if ($m % 2 == 1) { echo ' alternator'; }
else
{ echo ' alternator2'; }
echo '">';
echo '<table cellpadding="0" cellspacing="0">';
echo '<tr>';
echo '<td><div class="item column1">' . $structureRow['Field'] . '</div></td>';
echo '<td><div class="item column2">' . $structureRow['Type'] . '</div></td>';
echo '<td><div class="item column3">' . $structureRow['Default'] . '</div></td>';
echo '</tr>';
echo '</table>';
echo '</div>';
$fieldList[] = $structureRow['Field'];
$m++;
}
echo '</div>';
echo '</div>';
?>
<div id="newfield" class="inputbox">
<h4><?php echo __("Add a column"); ?></h4>
<form onsubmit="submitAddColumn(); return false">
<table cellpadding="5">
<tr>
<td class="secondaryheader">
<?php echo __("Name"); ?>:
</td>
<td>
<input type="text" class="text" name="NAME" style="width: 145px" />
</td>
<td class="secondaryheader">
<?php echo __("Type"); ?>:
</td>
<td>
<select name="TYPE" onchange="toggleValuesLine(this, 'newfield')" style="width: 145px">
<?php
foreach ($typeList as $type) {
echo '<option value="' . $type . '">' . $type . '</option>';
}
?>
</select>
</td>
</tr>
<tr class="valueline" style="display: none">
<td class="secondaryheader">
<?php echo __("Values"); ?>:
</td>
<td colspan="3" class="inputarea">
<input type="text" class="text" name="VALUES" style="width: 145px" />
</td>
</tr>
<tr>
<td class="secondaryheader">
<?php echo __("Size"); ?>:
</td>
<td>
<input type="text" class="text" name="SIZE" style="width: 145px" />
</td>
<td class="secondaryheader">
<?php echo __("Key"); ?>:
</td>
<td>
<select name="KEY" style="width: 145px">
<option value=""> - - - - </option>
<option value="primary"><?php echo __("primary"); ?></option>
<option value="unique"><?php echo __("unique"); ?></option>
<option value="index"><?php echo __("index"); ?></option>
</select>
</td>
</tr>
<tr>
<td class="secondaryheader">
<?php echo __("Default"); ?>:
</td>
<td>
<input type="text" class="text" name="DEFAULT" style="width: 145px" />
</td>
<?php
if (isset($charsetList)) {
echo "<td class=\"secondaryheader charsetToggle\">";
echo __("Charset") . ":";
echo "</td>";
echo "<td class=\"inputarea charsetToggle\">";
echo "<select name=\"CHARSET\" style=\"width: 145px\">";
echo "<option></option>";
foreach ($charsetList as $charset) {
echo "<option value=\"" . $charset . "\">" . $charset . "</option>";
}
echo "</select>";
echo "</td>";
} else {
echo "<td></td>";
echo "<td></td>";
}
?>
</tr>
<tr>
<td class="secondaryheader">
<?php echo __("Other"); ?>:
</td>
<td colspan="3">
<label><input type="checkbox" name="UNSIGN"><?php echo __("Unsigned"); ?></label>
<label><input type="checkbox" name="BINARY"><?php echo __("Binary"); ?></label>
<label><input type="checkbox" name="NOTNULL"><?php echo __("Not Null"); ?></label>
<label><input type="checkbox" name="AUTO"><?php echo __("Auto Increment"); ?></label>
</td>
</tr>
<tr>
<td class="secondaryheader" colspan="3">
<?php echo __("Insert this column"); ?>: <select id="INSERTPOS">
<option value=""><?php echo __("At end of table"); ?></option>
<option value=" FIRST"><?php echo __("At beginning of table"); ?></option>
<option value=""> - - - - - - - - </option>
<?php
for ($i=0; $i<count($fieldList); $i++) {
echo '<option value=" AFTER ' . $fieldList[$i] . '">' . __("After") . ' ' . $fieldList[$i] . '</option>';
}
?>
</select>
</td>
<td align="right" style="padding-right: 30px">
<input type="submit" class="inputbutton" value="<?php echo __("Submit"); ?>" />
</td>
</tr>
</table>
</form>
</div>
<div class="inputbox" style="width: 235px">
<h4><?php echo __("Edit table"); ?></h4>
<div id="editTableMessage"></div>
<form onsubmit="editTable(); return false">
<table cellpadding="0">
<tr>
<td class="secondaryheader">
<?php echo __("Name"); ?>:
</td>
<td class="inputarea">
<input type="text" class="text" name="RENAME" id="RENAME" value="<?php echo $table; ?>" style="width: 140px" />
</td>
</tr>
<?php
if (isset($charsetList) && isset($collationList)) {
$infoSql = $conn->query("SHOW TABLE STATUS LIKE '$table'");
if ($conn->isResultSet($infoSql) == 1) {
$infoRow = $conn->fetchAssoc($infoSql);
echo "<tr>";
echo "<td class=\"secondaryheader\">";
echo __("Charset") . ":";
echo "</td>";
echo "<td class=\"inputarea\">";
echo "<select name=\"CHARSET\" id=\"RECHARSET\" style=\"width: 145px\">";
echo "<option></option>";
foreach ($charsetList as $charset) {
echo "<option value=\"" . $charset . "\"";
if ($collationList[$infoRow['Collation']] == $charset) {
echo ' selected="selected"';
}
echo ">" . $charset . "</option>";
}
echo "</select>";
echo "</td>";
echo "</tr>";
}
}
echo '<tr>';
echo '<td></td>';
echo '<td align="left">';
echo '<input type="submit" class="inputbutton" value="' . __("Submit") . '" />';
echo '</td>';
echo '</tr>';
?>
</table>
</form>
</div>
<?php
$indexListSQL = $conn->query("SHOW INDEX FROM `$table`");
if ($conn->isResultSet($indexListSQL)) {
?>
<div style="width: 440px">
<table class="browsenav" style="margin-top: 15px">
<tr>
<td class="options">
<?php
echo '<strong>' . __("Indexes") . '</strong> ';
echo __("Select") . ': <a onclick="checkAll(\'grid2\')">' . __("All") . '</a> <a onclick="checkNone(\'grid2\')">' . __("None") . '</a>';
echo ' ' . __("With selected") . ': <a onclick="deleteSelectedIndexes(\'grid2\')">' . __("Delete") . '</a>';
?>
</td>
</tr>
</table>
<?php
$indexList = array();
while ($indexListRow = $conn->fetchAssoc($indexListSQL)) {
if (!array_key_exists($indexListRow['Key_name'], $indexList)) {
$indexList[$indexListRow['Key_name']] = $indexListRow['Column_name'];
} else {
$indexList[$indexListRow['Key_name']] .= ", " . $indexListRow['Column_name'];
}
}
echo '<div class="grid" id="grid2">';
echo '<div class="emptyvoid"> </div>';
echo '<div class="gridheader impotent">';
echo '<div class="gridheaderinner">';
echo '<table cellpadding="0" cellspacing="0">';
echo '<tr>';
echo '<td><div column="1" class="headertitle column1">' . __("Key") . '</div></td>';
echo '<td><div class="columnresizer"></div></td>';
echo '<td><div column="2" class="headertitle column2">' . __("Columns") . '</div></td>';
echo '<td><div class="columnresizer"></div></td>';
echo '<td><div class="emptyvoid" style="width: 15px; border-right: 0"></div></td>';
echo '</tr>';
echo '</table>';
echo '</div>';
echo '</div>';
echo '<div class="leftchecks" style="max-height: 400px">';
$m = 0;
foreach ($indexList as $keyName => $columns) {
echo '<dl class="manip';
if ($m % 2 == 1)
echo ' alternator';
else
echo ' alternator2';
echo '"><dt><input type="checkbox" class="check' . $m . '" onclick="rowClicked(' . $m++ . ', \'grid2\')" querybuilder="' . $keyName . '" /></dt></dl>';
}
echo '</div>';
echo '<div class="gridscroll withchecks" style="overflow-x: hidden; max-height: 400px">';
$m = 0;
foreach ($indexList as $keyName => $columns) {
echo '<div class="row' . $m . ' browse';
if ($m % 2 == 1) { echo ' alternator'; }
else
{ echo ' alternator2'; }
echo '">';
echo '<table cellpadding="0" cellspacing="0">';
echo '<tr>';
echo '<td><div class="item column1">' . $keyName . '</div></td>';
echo '<td><div class="item column2">' . $columns . '</div></td>';
echo '</tr>';
echo '</table>';
echo '</div>';
$m++;
}
echo '</div>';
echo '</div>';
$m++;
}
?>
<div id="newindex" class="inputbox" style="width: 275px">
<h4><?php echo __("Add an index"); ?></h4>
<div class="universalindent">
<form id="ADDINDEXFORM" onsubmit="submitForm('ADDINDEXFORM'); return false">
<table cellpadding="4">
<tr>
<td class="secondaryheader">
<?php echo __("Type"); ?>:
</td>
<td class="inputarea" valign="top">
<select name="INDEXTYPE" style="width: 115px">
<option value="INDEX"><?php echo __("Index"); ?></option>
<option value="UNIQUE"><?php echo __("Unique"); ?></option>
</select>
</td>
</tr>
<tr>
<td class="secondaryheader" style="width: 70px">
<?php echo __("Column(s)"); ?>:
</td>
<td class="inputarea" valign="top">
<?php
$finish = (count($fieldList) < 5) ? count($fieldList) : 5;
for ($i=0; $i<$finish; $i++) {
echo '<label><input type="checkbox" name="INDEXCOLUMNLIST[]" value="' . $fieldList[$i] . '">' . $fieldList[$i] . '</label><br />';
}
if (count($fieldList) > 5) {
echo '<a onclick="show(\'columnListFull\'); hide(\'columnListLink\'); return false;" id="columnListLink">' . sprintf(__("Show %d more..."), count($fieldList) - 5) . '</a>';
echo '<div id="columnListFull" style="display: none">';
for ($i=5; $i<count($fieldList); $i++) {
echo '<label><input type="checkbox" name="INDEXCOLUMNLIST[]" value="' . $fieldList[$i] . '">' . $fieldList[$i] . '</label><br />';
}
echo '</div>';
}
?>
</td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" class="inputbutton" value="<?php echo __("Submit"); ?>" />
</td>
</tr>
</table>
</form>
</div>
</div>
</td>
<td valign="top">
<div style="margin: 4px 0 0 20px; padding-left: 15px; border-left: 1px solid rgb(215, 215, 215)">
<h3><?php echo __("Options"); ?></h3>
<div style="padding: 2px 0 15px">
<a onclick="confirmEmptyTable()"><?php echo __("Empty table"); ?></a><br />
<a onclick="confirmDropTable()"><?php echo __("Drop table"); ?></a><br />
<a onclick="optimizeTable()"><?php echo __("Optimize table"); ?></a>
</div>
<?php
$infoSql = $conn->query("SHOW TABLE STATUS LIKE '$table'");
if ($conn->isResultSet($infoSql) == 1) {
$infoRow = $conn->fetchAssoc($infoSql);
?>
<h3><?php echo __("Table Information"); ?></h3>
<dl class="information">
<?php
$engine = (array_key_exists("Type", $infoRow)) ? $infoRow['Type'] : $infoRow['Engine'];
echo '<dt>' . __("Storage engine") . ':</dt><dd>' . $engine . '</dd>';
if (array_key_exists('Collation', $infoRow) && isset($collationList)) {
echo '<dt>' . ("Charset") . ':</dt><dd>' . $collationList[$infoRow['Collation']] . '</dd>';
}
echo '<dt>' . __("Rows") . ':</dt><dd>' . number_format($infoRow['Rows']) . '</dd>';
echo '<dt>' . __("Size") . ':</dt><dd>' . memoryFormat($infoRow['Data_length']) . '</dd>';
echo '<dt>' . __("Overhead") . ':</dt><dd>' . memoryFormat($infoRow['Data_free']) . '</dd>';
echo '<dt>' . __("Auto Increment") . ':</dt><dd>' . number_format($infoRow['Auto_increment']) . '</dd>';
?>
</dl>
<div class="clearer"></div>
<?php
}
?>
<script type="text/javascript" authkey="<?php echo $requestKey; ?>">
setTimeout("startGrid()", 1);
</script>
</div>
</td>
</tr>
</table>
<?php
} else if ($conn->getAdapter() == "sqlite" && sizeof($structureSql) > 0) {
?>
<table cellpadding="0" width="100%" class="structure" style="margin: 2px 7px 7px">
<tr>
<td valign="top" width="575">
<table class="browsenav">
<tr>
<td class="options">
<?php
echo '<strong>' . __("Columns") . '</strong>';
?>
</td>
</tr>
</table>
<?php
echo '<div class="grid">';
echo '<div class="gridheader impotent">';
echo '<div class="gridheaderinner">';
echo '<table cellpadding="0" cellspacing="0">';
echo '<tr>';
echo '<td><div column="1" class="headertitle column1">' . __("Name") . '</div></td>';
echo '<td><div class="columnresizer"></div></td>';
echo '<td><div column="2" class="headertitle column2">' . __("Type") . '</div></td>';
echo '<td><div class="columnresizer"></div></td>';
echo '</tr>';
echo '</table>';
echo '</div>';
echo '</div>';
echo '<div class="gridscroll" style="overflow-x: hidden; max-height: 300px">';
$m = 0;
foreach ($structureSql as $column) {
echo '<div class="row' . $m . ' browse';
if ($m % 2 == 1) { echo ' alternator'; }
else
{ echo ' alternator2'; }
echo '">';
echo '<table cellpadding="0" cellspacing="0">';
echo '<tr>';
echo '<td><div class="item column1">' . $column[0] . '</div></td>';
echo '<td><div class="item column2">' . $column[1] . '</div></td>';
echo '</tr>';
echo '</table>';
echo '</div>';
$fieldList[] = $column[0];
$m++;
}
echo '</div>';
echo '</div>';
if (version_compare($conn->getVersion(), "3.1.3", ">")) {
?>
<div id="newfield" class="inputbox">
<h4><?php echo __("Add a column"); ?></h4>
<form onsubmit="submitAddColumn(); return false">
<table cellpadding="5">
<tr>
<td class="secondaryheader">
<?php echo __("Name"); ?>:
</td>
<td>
<input type="text" class="text" name="NAME" style="width: 145px" />
</td>
<td class="secondaryheader">
<?php echo __("Type"); ?>:
</td>
<td>
<select name="TYPE" style="width: 150px">
<option value="">typeless</option>
<?php
foreach ($sqliteTypeList as $type) {
echo '<option value="' . $type . '">' . $type . '</option>';
}
?>
</select>
</td>
</tr>
<tr>
<td class="secondaryheader">
<?php echo __("Size"); ?>:
</td>
<td>
<input type="text" class="text" name="SIZE" style="width: 145px" />
</td>
<td class="secondaryheader">
<?php echo __("Default"); ?>:
</td>
<td>
<input type="text" class="text" name="DEFAULT" style="width: 145px" />
</td>
</tr>
<tr>
<td class="secondaryheader">
<?php echo __("Other"); ?>:
</td>
<td colspan="3">
<label><input type="checkbox" name="NOTNULL"><?php echo __("Not Null"); ?></label>
<label><input type="checkbox" name="UNIQUE"><?php echo __("Unique"); ?></label>
</td>
</tr>
<tr>
<td colspan="4" align="right" style="padding-right: 30px">
<input type="submit" class="inputbutton" value="<?php echo __("Submit"); ?>" />
</td>
</tr>
</table>
</form>
</div>
<div class="inputbox" style="width: 235px">
<h4><?php echo __("Edit table"); ?></h4>
<div id="editTableMessage"></div>
<form onsubmit="editTable(); return false">
<table cellpadding="0">
<tr>
<td class="secondaryheader">
<?php echo __("Name"); ?>:
</td>
<td class="inputarea">
<input type="text" class="text" name="RENAME" id="RENAME" value="<?php echo $table; ?>" style="width: 140px" />
</td>
</tr>
<tr>
<td></td>
<td align="left">
<input type="submit" class="inputbutton" value="<?php echo __("Submit"); ?>" />
</td>
</tr>
</table>
</form>
</div>
<?php
}
?>
</td>
<td valign="top">
<div style="margin: 4px 0 0 20px; padding-left: 15px; border-left: 1px solid rgb(215, 215, 215)">
<h3><?php echo __("Options"); ?></h3>
<div style="padding: 2px 0 15px">
<a onclick="confirmEmptyTable()"><?php echo __("Empty table"); ?></a><br />
<a onclick="confirmDropTable()"><?php echo __("Drop table"); ?></a><br />
</div>
<?php
$rowCount = $conn->tableRowCount($table);
?>
<h3><?php echo __("Table Information"); ?></h3>
<dl class="information">
<?php
echo '<dt>' . __("Rows") . ':</dt><dd>' . number_format($rowCount) . '</dd>';
?>
</dl>
<div class="clearer"></div>
<script type="text/javascript" authkey="<?php echo $requestKey; ?>">
setTimeout("startGrid()", 1);
</script>
</div>
</td>
</tr>
</table>
<?php
} else {
?>
<div class="errorpage">
<h4><?php echo __("Oops"); ?></h4>
<p><?php printf(__('There was a bit of trouble locating the "%s" table.'), $table); ?></p>
</div>
<?php
}
?>