3.3.9.1 release
[phpmyadmin/madhuracj.git] / pdf_pages.php
bloba196b9b47363707c6df8ad19d191f14e2de22dac
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @version $Id$
6 * @package phpMyAdmin
7 */
9 /**
10 * Gets some core libraries
12 require_once './libraries/common.inc.php';
13 require_once './libraries/db_common.inc.php';
14 require './libraries/StorageEngine.class.php';
16 /**
17 * Settings for relation stuff
19 require_once './libraries/relation.lib.php';
20 $cfgRelation = PMA_getRelationsParam();
22 // This is to avoid "Command out of sync" errors. Before switching this to
23 // a value of 0 (for MYSQLI_USE_RESULT), please check the logic
24 // to free results wherever needed.
25 $query_default_option = PMA_DBI_QUERY_STORE;
27 /**
28 * Now in ./libraries/relation.lib.php we check for all tables
29 * that we need, but if we don't find them we are quiet about it
30 * so people can work without.
31 * This page is absolutely useless if you didn't set up your tables
32 * correctly, so it is a good place to see which tables we can and
33 * complain ;-)
35 if (!$cfgRelation['relwork']) {
36 echo sprintf($strNotSet, 'relation', 'config.inc.php') . '<br />' . "\n"
37 . '<a href="./Documentation.html#relation" target="documentation">' . $strDocu . '</a>' . "\n";
38 require_once './libraries/footer.inc.php';
41 if (!$cfgRelation['displaywork']) {
42 echo sprintf($strNotSet, 'table_info', 'config.inc.php') . '<br />' . "\n"
43 . '<a href="./Documentation.html#table_info" target="documentation">' . $strDocu . '</a>' . "\n";
44 require_once './libraries/footer.inc.php';
47 if (!isset($cfgRelation['table_coords'])){
48 echo sprintf($strNotSet, 'table_coords', 'config.inc.php') . '<br />' . "\n"
49 . '<a href="./Documentation.html#table_coords" target="documentation">' . $strDocu . '</a>' . "\n";
50 exit();
52 if (!isset($cfgRelation['pdf_pages'])) {
53 echo sprintf($strNotSet, 'pdf_page', 'config.inc.php') . '<br />' . "\n"
54 . '<a href="./Documentation.html#pdf_pages" target="documentation">' . $strDocu . '</a>' . "\n";
55 exit();
58 if ($cfgRelation['pdfwork']) {
59 // Now is the time to work on all changes
60 if (isset($do)) {
61 switch ($do) {
62 case 'choosepage':
63 if ($action_choose=="1") {
64 $ch_query = 'DELETE FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords'])
65 . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
66 . ' AND pdf_page_number = \'' . PMA_sqlAddslashes($chpage) . '\'';
67 PMA_query_as_controluser($ch_query, FALSE, $query_default_option);
69 $ch_query = 'DELETE FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['pdf_pages'])
70 . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
71 . ' AND page_nr = \'' . PMA_sqlAddslashes($chpage) . '\'';
72 PMA_query_as_controluser($ch_query, FALSE, $query_default_option);
74 unset($chpage);
76 break;
77 case 'createpage':
78 $pdf_page_number = PMA_REL_create_page($newpage, $cfgRelation, $db, $query_default_option);
80 // A u t o m a t i c l a y o u t
81 // ================================
82 if (isset($auto_layout_internal) || isset($auto_layout_foreign)) {
83 $all_tables = array();
86 if (isset($auto_layout_foreign)) {
87 // get the tables list
88 $tables = PMA_DBI_get_tables_full($db);
89 // find the ones who support FOREIGN KEY; it's not
90 // important that we group together InnoDB tables
91 // and PBXT tables, as this logic is just to put
92 // the tables on the layout, not to determine relations
93 $foreignkey_tables = array();
94 foreach($tables as $table_name => $table_properties) {
95 if (PMA_foreignkey_supported($table_properties['ENGINE'])) {
96 $foreignkey_tables[] = $table_name;
99 $all_tables = $foreignkey_tables;
100 // could be improved by finding the tables which have the
101 // most references keys and placing them at the beginning
102 // of the array (so that they are all center of schema)
103 unset($tables, $foreignkey_tables);
104 } // endif auto_layout_foreign
106 if (isset($auto_layout_internal)) {
107 // get the tables that have relations, by descending
108 // number of links
109 $master_tables = 'SELECT COUNT(master_table), master_table'
110 . ' FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['relation'])
111 . ' WHERE master_db = \'' . $db . '\''
112 . ' GROUP BY master_table'
113 . ' ORDER BY ' . PMA_backquote('COUNT(master_table)') . ' DESC ';
114 $master_tables_rs = PMA_query_as_controluser($master_tables, FALSE, $query_default_option);
115 if ($master_tables_rs && PMA_DBI_num_rows($master_tables_rs) > 0) {
116 // first put all the master tables at beginning
117 // of the list, so they are near the center of
118 // the schema
119 while (list(, $master_table) = PMA_DBI_fetch_row($master_tables_rs)) {
120 $all_tables[] = $master_table;
123 // then for each master, add its foreigns into an array
124 // of foreign tables, if not already there
125 // (a foreign might be foreign for more than
126 // one table, and might be a master itself)
128 $foreign_tables = array();
129 foreach ($all_tables AS $master_table) {
130 $foreigners = PMA_getForeigners($db, $master_table);
131 foreach ($foreigners AS $foreigner) {
132 if (!in_array($foreigner['foreign_table'], $foreign_tables)) {
133 $foreign_tables[] = $foreigner['foreign_table'];
138 // then merge the arrays
139 foreach ($foreign_tables AS $foreign_table) {
140 if (!in_array($foreign_table, $all_tables)) {
141 $all_tables[] = $foreign_table;
144 } // endif there are master tables
145 } // endif auto_layout_internal
147 if (isset($auto_layout_internal) || isset($auto_layout_foreign)) {
148 // now generate the coordinates for the schema,
149 // in a clockwise spiral
151 $pos_x = 300;
152 $pos_y = 300;
153 $delta = 110;
154 $delta_mult = 1.10;
155 $direction = "right";
156 foreach ($all_tables AS $current_table) {
158 // save current table's coordinates
159 $insert_query = 'INSERT INTO ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) . ' '
160 . '(db_name, table_name, pdf_page_number, x, y) '
161 . 'VALUES (\'' . PMA_sqlAddslashes($db) . '\', \'' . PMA_sqlAddslashes($current_table) . '\',' . $pdf_page_number . ',' . $pos_x . ',' . $pos_y . ')';
162 PMA_query_as_controluser($insert_query, FALSE, $query_default_option);
164 // compute for the next table
165 switch ($direction) {
166 case 'right':
167 $pos_x += $delta;
168 $direction = "down";
169 $delta *= $delta_mult;
170 break;
171 case 'down':
172 $pos_y += $delta;
173 $direction = "left";
174 $delta *= $delta_mult;
175 break;
176 case 'left':
177 $pos_x -= $delta;
178 $direction = "up";
179 $delta *= $delta_mult;
180 break;
181 case 'up':
182 $pos_y -= $delta;
183 $direction = "right";
184 $delta *= $delta_mult;
185 break;
186 } // end switch
187 } // end foreach
188 } // end if some auto-layout to do
190 $chpage = $pdf_page_number;
192 break;
194 case 'edcoord':
195 for ($i = 0; $i < $c_table_rows; $i++) {
196 $arrvalue = 'c_table_' . $i;
197 $arrvalue = $$arrvalue;
198 if (!isset($arrvalue['x']) || $arrvalue['x'] == '') {
199 $arrvalue['x'] = 0;
201 if (!isset($arrvalue['y']) || $arrvalue['y'] == '') {
202 $arrvalue['y'] = 0;
204 if (isset($arrvalue['name']) && $arrvalue['name'] != '--') {
205 $test_query = 'SELECT * FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords'])
206 . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
207 . ' AND table_name = \'' . PMA_sqlAddslashes($arrvalue['name']) . '\''
208 . ' AND pdf_page_number = \'' . PMA_sqlAddslashes($chpage) . '\'';
209 $test_rs = PMA_query_as_controluser($test_query, FALSE, $query_default_option);
210 if ($test_rs && PMA_DBI_num_rows($test_rs) > 0) {
211 if (isset($arrvalue['delete']) && $arrvalue['delete'] == 'y') {
212 $ch_query = 'DELETE FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords'])
213 . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
214 . ' AND table_name = \'' . PMA_sqlAddslashes($arrvalue['name']) . '\''
215 . ' AND pdf_page_number = \'' . PMA_sqlAddslashes($chpage) . '\'';
216 } else {
217 $ch_query = 'UPDATE ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) . ' '
218 . 'SET x = ' . $arrvalue['x'] . ', y= ' . $arrvalue['y']
219 . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
220 . ' AND table_name = \'' . PMA_sqlAddslashes($arrvalue['name']) . '\''
221 . ' AND pdf_page_number = \'' . PMA_sqlAddslashes($chpage) . '\'';
223 } else {
224 $ch_query = 'INSERT INTO ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) . ' '
225 . '(db_name, table_name, pdf_page_number, x, y) '
226 . 'VALUES (\'' . PMA_sqlAddslashes($db) . '\', \'' . PMA_sqlAddslashes($arrvalue['name']) . '\', \'' . PMA_sqlAddslashes($chpage) . '\',' . $arrvalue['x'] . ',' . $arrvalue['y'] . ')';
228 PMA_query_as_controluser($ch_query, FALSE, $query_default_option);
229 } // end if
230 } // end for
231 break;
232 case 'deleteCrap':
233 foreach ($delrow AS $current_row) {
234 $d_query = 'DELETE FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) . ' ' . "\n"
235 . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'' . "\n"
236 . ' AND table_name = \'' . PMA_sqlAddslashes($current_row) . '\'' . "\n"
237 . ' AND pdf_page_number = \'' . PMA_sqlAddslashes($chpage) . '\'';
238 PMA_query_as_controluser($d_query, FALSE, $query_default_option);
240 break;
241 } // end switch
242 } // end if (isset($do))
244 // We will need an array of all tables in this db
245 $selectboxall = array('--');
246 $alltab_rs = PMA_DBI_query('SHOW TABLES FROM ' . PMA_backquote($db) . ';', null, PMA_DBI_QUERY_STORE);
247 while ($val = @PMA_DBI_fetch_row($alltab_rs)) {
248 $selectboxall[] = $val[0];
251 // Now first show some possibility to choose a page for the pdf
252 $page_query = 'SELECT * FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['pdf_pages'])
253 . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'';
254 $page_rs = PMA_query_as_controluser($page_query, FALSE, $query_default_option);
256 if ($page_rs && PMA_DBI_num_rows($page_rs) > 0) {
258 <form method="get" action="pdf_pages.php" name="selpage">
259 <fieldset>
260 <legend>
261 <?php echo $strChoosePage . "\n"; ?>
262 </legend>
263 <?php echo PMA_generate_common_hidden_inputs($db, $table); ?>
264 <input type="hidden" name="do" value="choosepage" />
265 <select name="chpage" onchange="this.form.submit()">
266 <?php
267 while ($curr_page = PMA_DBI_fetch_assoc($page_rs)) {
268 echo "\n" . ' '
269 . '<option value="' . $curr_page['page_nr'] . '"';
270 if (isset($chpage) && $chpage == $curr_page['page_nr']) {
271 echo ' selected="selected"';
273 echo '>' . $curr_page['page_nr'] . ': ' . htmlspecialchars($curr_page['page_descr']) . '</option>';
274 } // end while
275 echo "\n";
277 </select>
278 <?php
279 $choices = array(
280 '0' => $strEdit,
281 '1' => $strDelete);
282 PMA_display_html_radio('action_choose', $choices, '0', false);
283 unset($choices);
285 <input type="submit" value="<?php echo $strGo; ?>" /><br />
286 </fieldset>
287 </form>
288 <?php
290 echo "\n";
292 // Possibility to create a new page:
294 <form method="post" action="pdf_pages.php" name="crpage">
295 <fieldset>
296 <legend>
297 <?php echo $strCreatePage . "\n"; ?>
298 </legend>
299 <?php echo PMA_generate_common_hidden_inputs($db, $table); ?>
300 <input type="hidden" name="do" value="createpage" />
301 <input type="text" name="newpage" size="20" maxlength="50" />
302 <input type="checkbox" name="auto_layout_internal" />
303 <?php echo '(' . $strAutomaticLayout . ' / ' . $strInternalRelations . ')';
304 if (PMA_StorageEngine::isValid('InnoDB') || PMA_StorageEngine::isValid('PBXT')) {
305 echo '<input type="checkbox" name="auto_layout_foreign" />'
306 . '(' . $strAutomaticLayout . ' / FOREIGN KEY)';
309 <input type="submit" value="<?php echo $strGo; ?>" />
310 </fieldset>
311 </form>
312 <?php
313 // Now if we already have chosen a page number then we should show the
314 // tables involved
315 if (isset($chpage) && $chpage > 0) {
316 echo "\n";
318 <hr />
320 <h2><?php echo $strSelectTables ;?></h2>
322 <?php
323 $page_query = 'SELECT * FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords'])
324 . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
325 . ' AND pdf_page_number = \'' . PMA_sqlAddslashes($chpage) . '\'';
326 $page_rs = PMA_query_as_controluser($page_query, FALSE, $query_default_option);
327 $array_sh_page = array();
328 $draginit = '';
329 $draginit2 = '';
330 $reset_draginit = '';
331 $i = 0;
332 while ($temp_sh_page = @PMA_DBI_fetch_assoc($page_rs)) {
333 $array_sh_page[] = $temp_sh_page;
336 // garvin: Display WYSIWYG-PDF parts?
337 if ($cfg['WYSIWYG-PDF']) {
338 if (!isset($_POST['with_field_names']) && !isset($_POST['showwysiwyg'])) {
339 $with_field_names = TRUE;
342 <script type="text/javascript" src="./js/dom-drag.js"></script>
343 <form method="post" action="pdf_pages.php" name="dragdrop">
344 <input type="button" name="dragdrop" value="<?php echo $strToggleScratchboard; ?>" onclick="ToggleDragDrop('pdflayout');" />
345 <input type="button" name="dragdropreset" value="<?php echo $strReset; ?>" onclick="resetDrag();" />
346 </form>
347 <div id="pdflayout" class="pdflayout" style="visibility: hidden;">
348 <?php
349 foreach ($array_sh_page AS $key => $temp_sh_page) {
350 $drag_x = $temp_sh_page['x'];
351 $drag_y = $temp_sh_page['y'];
353 $draginit2 .= ' Drag.init(getElement("table_' . $i . '"), null, 0, parseInt(myid.style.width)-2, 0, parseInt(myid.style.height)-5);' . "\n";
354 $draginit2 .= ' getElement("table_' . $i . '").onDrag = function (x, y) { document.edcoord.elements["c_table_' . $i . '[x]"].value = parseInt(x); document.edcoord.elements["c_table_' . $i . '[y]"].value = parseInt(y) }' . "\n";
355 $draginit .= ' getElement("table_' . $i . '").style.left = "' . $drag_x . 'px";' . "\n";
356 $draginit .= ' getElement("table_' . $i . '").style.top = "' . $drag_y . 'px";' . "\n";
357 $reset_draginit .= ' getElement("table_' . $i . '").style.left = "2px";' . "\n";
358 $reset_draginit .= ' getElement("table_' . $i . '").style.top = "' . (15 * $i) . 'px";' . "\n";
359 $reset_draginit .= ' document.edcoord.elements["c_table_' . $i . '[x]"].value = "2"' . "\n";
360 $reset_draginit .= ' document.edcoord.elements["c_table_' . $i . '[y]"].value = "' . (15 * $i) . '"' . "\n";
362 $local_query = 'SHOW FIELDS FROM '
363 . PMA_backquote($temp_sh_page['table_name'])
364 . ' FROM ' . PMA_backquote($db);
365 $fields_rs = PMA_DBI_query($local_query);
366 unset($local_query);
367 $fields_cnt = PMA_DBI_num_rows($fields_rs);
369 echo '<div id="table_' . $i . '" class="pdflayout_table"><u>' . $temp_sh_page['table_name'] . '</u>';
370 if (isset($with_field_names)) {
371 while ($row = PMA_DBI_fetch_assoc($fields_rs)) {
372 echo '<br />' . htmlspecialchars($row['Field']) . "\n";
375 echo '</div>' . "\n";
376 PMA_DBI_free_result($fields_rs);
377 unset($fields_rs);
379 $i++;
382 </div>
383 <script type="text/javascript">
384 //<![CDATA[
385 function init() {
386 refreshLayout();
387 myid = getElement('pdflayout');
388 <?php echo $draginit; ?>
389 TableDragInit();
392 function TableDragInit() {
393 myid = getElement('pdflayout');
394 <?php echo $draginit2; ?>
397 function resetDrag() {
398 <?php echo $reset_draginit; ?>
400 //]]>
401 </script>
402 <?php
403 } // end if WYSIWYG-PDF
406 <form method="post" action="pdf_pages.php" name="edcoord">
407 <?php echo PMA_generate_common_hidden_inputs($db, $table); ?>
408 <input type="hidden" name="chpage" value="<?php echo htmlspecialchars($chpage); ?>" />
409 <input type="hidden" name="do" value="edcoord" />
410 <table border="0">
411 <tr>
412 <th><?php echo $strTable; ?></th>
413 <th><?php echo $strDelete; ?></th>
414 <th>X</th>
415 <th>Y</th>
416 </tr>
417 <?php
418 if (isset($ctable)) {
419 unset($ctable);
423 $i = 0;
424 $odd_row = true;
425 foreach ($array_sh_page AS $dummy_sh_page => $sh_page) {
426 $_mtab = $sh_page['table_name'];
427 $tabExist[$_mtab] = FALSE;
428 echo "\n" . ' <tr class="';
429 if ($odd_row) {
430 echo 'odd';
431 } else {
432 echo 'even';
434 echo '">';
435 $odd_row != $odd_row;
436 echo "\n" . ' <td>'
437 . "\n" . ' <select name="c_table_' . $i . '[name]">';
438 foreach ($selectboxall AS $key => $value) {
439 echo "\n" . ' <option value="' . htmlspecialchars($value) . '"';
440 if ($value == $sh_page['table_name']) {
441 echo ' selected="selected"';
442 $tabExist[$_mtab] = TRUE;
444 echo '>' . htmlspecialchars($value) . '</option>';
445 } // end while
446 echo "\n" . ' </select>'
447 . "\n" . ' </td>';
448 echo "\n" . ' <td>'
449 . "\n" . ' <input type="checkbox" name="c_table_' . $i . '[delete]" value="y" />' . $strDelete;
450 echo "\n" . ' </td>';
451 echo "\n" . ' <td>'
452 . "\n" . ' <input type="text" ' . ($cfg['WYSIWYG-PDF'] ? 'onchange="dragPlace(' . $i . ', \'x\', this.value)"' : '') . ' name="c_table_' . $i . '[x]" value="' . $sh_page['x'] . '" />';
453 echo "\n" . ' </td>';
454 echo "\n" . ' <td>'
455 . "\n" . ' <input type="text" ' . ($cfg['WYSIWYG-PDF'] ? 'onchange="dragPlace(' . $i . ', \'y\', this.value)"' : '') . ' name="c_table_' . $i . '[y]" value="' . $sh_page['y'] . '" />';
456 echo "\n" . ' </td>';
457 echo "\n" . ' </tr>';
458 $i++;
459 } // end while
460 // Do one more empty row
461 echo "\n" . ' <tr class="';
462 if ($odd_row) {
463 echo 'odd';
464 } else {
465 echo 'even';
467 $odd_row != $odd_row;
468 echo '">';
469 echo "\n" . ' <td>'
470 . "\n" . ' <select name="c_table_' . $i . '[name]">';
471 foreach ($selectboxall AS $key => $value) {
472 echo "\n" . ' <option value="' . htmlspecialchars($value) . '">' . htmlspecialchars($value) . '</option>';
474 echo "\n" . ' </select>'
475 . "\n" . ' </td>';
476 echo "\n" . ' <td>'
477 . "\n" . ' <input type="checkbox" name="c_table_' . $i . '[delete]" value="y" />' . $strDelete;
478 echo "\n" . ' </td>';
479 echo "\n" . ' <td>'
480 . "\n" . ' <input type="text" name="c_table_' . $i . '[x]" value="' . (isset($sh_page['x'])?$sh_page['x']:'') . '" />';
481 echo "\n" . ' </td>';
482 echo "\n" . ' <td>'
483 . "\n" . ' <input type="text" name="c_table_' . $i . '[y]" value="' . (isset($sh_page['y'])?$sh_page['y']:'') . '" />';
484 echo "\n" . ' </td>';
485 echo "\n" . ' </tr>';
486 echo "\n" . ' </table>' . "\n";
488 echo "\n" . ' <input type="hidden" name="c_table_rows" value="' . ($i + 1) . '" />';
489 echo ($cfg['WYSIWYG-PDF'] ? "\n" . ' <input type="hidden" name="showwysiwyg" value="' . ((isset($showwysiwyg) && $showwysiwyg == '1') ? '1' : '0') . '" />' : '');
490 echo "\n" . ' <input type="checkbox" name="with_field_names" ' . (isset($with_field_names) ? 'checked="checked"' : ''). ' />' . $strColumnNames . '<br />';
491 echo "\n" . ' <input type="submit" value="' . $strSave . '" />';
492 echo "\n" . '</form>' . "\n\n";
493 } // end if
495 // Check if there are tables that need to be deleted,
496 // if there are, ask the user for allowance
497 $_strtrans = '';
498 $_strname = '';
499 $shoot = FALSE;
500 if (!empty($tabExist) && is_array($tabExist)) {
501 foreach ($tabExist AS $key => $value) {
502 if (!$value) {
503 $_strtrans .= '<input type="hidden" name="delrow[]" value="' . htmlspecialchars($key) . '" />' . "\n";
504 $_strname .= '<li>' . htmlspecialchars($key) . '</li>' . "\n";
505 $shoot = TRUE;
508 if ($shoot) {
509 echo '<form action="pdf_pages.php" method="post">' . "\n"
510 . PMA_generate_common_hidden_inputs($db, $table)
511 . '<input type="hidden" name="do" value="deleteCrap" />' . "\n"
512 . '<input type="hidden" name="chpage" value="' . htmlspecialchars($chpage) . '" />' . "\n"
513 . $strDelOld
514 . '<ul>' . "\n"
515 . $_strname
516 . '</ul>' . "\n"
517 . $_strtrans
518 . '<input type="submit" value="' . $strGo . '" />' . "\n"
519 . '</form>';
522 // ------------------------------------
523 // d i s p l a y p d f s c h e m a
524 // ------------------------------------
526 if (isset($do)
527 && ($do == 'edcoord'
528 || ($do == 'choosepage' && isset($chpage))
529 || ($do == 'createpage' && isset($chpage)))) {
531 <form method="post" action="pdf_schema.php" name="pdfoptions">
532 <?php echo PMA_generate_common_hidden_inputs($db); ?>
533 <input type="hidden" name="pdf_page_number" value="<?php echo htmlspecialchars($chpage); ?>" />
535 <?php echo '<br /><strong>' . $strDisplayPDF . '</strong>'; ?>:&nbsp;<br />
536 <input type="checkbox" name="show_grid" id="show_grid_opt" /><label for="show_grid_opt"><?php echo $strShowGrid; ?></label><br />
537 <input type="checkbox" name="show_color" id="show_color_opt" checked="checked" /><label for="show_color_opt"><?php echo $strShowColor; ?></label><br />
538 <input type="checkbox" name="show_table_dimension" id="show_table_dim_opt" /><label for="show_table_dim_opt"><?php echo $strShowTableDimension; ?></label><br />
539 <input type="checkbox" name="all_tab_same_wide" id="all_tab_same_wide" /><label for="all_tab_same_wide"><?php echo $strAllTableSameWidth; ?></label><br />
540 <input type="checkbox" name="with_doc" id="with_doc" checked="checked" /><label for="with_doc"><?php echo $strDataDict; ?></label><br />
541 <input type="checkbox" name="show_keys" id="show_keys" /><label for="show_keys"><?php echo $strShowKeys; ?></label><br />
542 <label for="orientation_opt"><?php echo $strShowDatadictAs; ?></label>
543 <select id="orientation_opt" name="orientation" <?php echo ($cfg['WYSIWYG-PDF'] ? 'onchange="refreshDragOption(\'pdflayout\');"' : ''); ?>>
544 <option value="L"><?php echo $strLandscape;?></option>
545 <option value="P"><?php echo $strPortrait;?></option>
546 </select><br />
548 <label for="paper_opt"><?php echo $strPaperSize; ?></label>
549 <select id="paper_opt" name="paper" <?php echo ($cfg['WYSIWYG-PDF'] ? 'onchange="refreshDragOption(\'pdflayout\');"' : ''); ?>>
550 <?php
551 foreach ($cfg['PDFPageSizes'] AS $key => $val) {
552 echo '<option value="' . $val . '"';
553 if ($val == $cfg['PDFDefaultPageSize']) {
554 echo ' selected="selected"';
556 echo ' >' . $val . '</option>' . "\n";
559 </select><br />
560 &nbsp;&nbsp;<input type="submit" value="<?php echo $strGo; ?>" />
561 </form>
562 <?php
563 if ((isset($showwysiwyg) && $showwysiwyg == '1')) {
565 <script type="text/javascript">
566 //<![CDATA[
567 ToggleDragDrop('pdflayout');
568 //]]>
569 </script>
570 <?php
572 } // end if
573 } // end if ($cfgRelation['pdfwork'])
577 * Displays the footer
579 echo "\n";
580 require_once './libraries/footer.inc.php';