3 // vim: expandtab sw=4 ts=4 sts=4:
7 * Contributed by Maxime Delorme and merged by lem9
12 * Gets some core scripts
14 require('./libraries/grab_globals.lib.php3');
15 require('./libraries/common.lib.php3');
19 * Settings for relation stuff
21 require('./libraries/relation.lib.php3');
22 require('./libraries/transformations.lib.php3');
24 $cfgRelation = PMA_getRelationsParam();
28 * Now in ./libraries/relation.lib.php3 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
35 if (!$cfgRelation['pdfwork']) {
36 echo '<font color="red">' . $strError . '</font><br />' . "\n";
37 $url_to_goto = '<a href="' . $cfg['PmaAbsoluteUri'] . 'chk_rel.php3?' . $url_query . '">';
38 echo sprintf($strRelationNotWorking, $url_to_goto, '</a>') . "\n";
43 * Gets the "fpdf" libraries and defines the pdf font path
45 require('./libraries/fpdf/fpdf.php3');
46 // loic1: PHP3 compatibility
47 // define('FPDF_FONTPATH', './libraries/fpdf/font/');
48 $FPDF_font_path = './libraries/fpdf/font/';
52 * Emulates the "array_search" function with PHP < 4.0.5
54 if (PMA_PHP_INT_VERSION
< 40005) {
55 function array_search($needle, $haystack) {
59 while (list($key, $value) = each($haystack)) {
60 if ($value == $needle) {
66 } // end of the "array_search" function
72 * Extends the "FPDF" class and prepares the work
78 class PMA_PDF
extends FPDF
81 * Defines private properties
90 var $Outlines=array();
96 * The PMA_PDF constructor
98 * This function just refers to the "FPDF" constructor: with PHP3 a class
99 * must have a constructor
101 * @param string The page orientation (p, portrait, l or landscape)
102 * @param string The unit for sizes (pt, mm, cm or in)
103 * @param mixed The page format (A3, A4, A5, letter, legal or an array
110 function PMA_PDF($orientation = 'L', $unit = 'mm', $format = 'A4')
112 $this->Alias
= array() ;
113 $this->FPDF($orientation, $unit, $format);
114 } // end of the "PMA_PDF()" method
115 function SetAlias($name, $value)
117 $this->Alias
[$name] = $value ;
121 if(count($this->Alias
) > 0)
124 @reset
($this->Alias
);
125 while(list($alias, $value) = each($this->Alias
)) {
126 for($n=1;$n<=$nb;$n++
)
127 $this->pages
[$n]=str_replace($alias,$value,$this->pages
[$n]);
134 * Sets the scaling factor, defines minimum coordinates and margins
136 * @param double The scaling factor
137 * @param double The minimum X coordinate
138 * @param double The minimum Y coordinate
139 * @param double The left margin
140 * @param double The top margin
144 function PMA_PDF_setScale($scale = 1, $x_min = 0, $y_min = 0, $l_marg = -1, $t_marg = -1)
146 $this->scale
= $scale;
147 $this->x_min
= $x_min;
148 $this->y_min
= $y_min;
149 if ($this->l_marg
!= -1) {
150 $this->l_marg
= $l_marg;
152 if ($this->t_marg
!= -1) {
153 $this->t_marg
= $t_marg;
155 } // end of the "PMA_PDF_setScale" function
159 * Outputs a scaled cell
161 * @param double The cell width
162 * @param double The cell height
163 * @param string The text to output
164 * @param mixed Wether to add borders or not
165 * @param integer Where to put the cursor once the output is done
166 * @param string Align mode
167 * @param integer Whether to fill the cell with a color or not
173 function PMA_PDF_cellScale($w, $h = 0, $txt = '', $border = 0, $ln = 0, $align = '', $fill = 0,$link ='')
175 $h = $h / $this->scale
;
176 $w = $w / $this->scale
;
177 $this->Cell($w, $h, $txt, $border, $ln, $align, $fill,$link);
178 } // end of the "PMA_PDF_cellScale" function
182 * Draws a scaled line
184 * @param double The horizontal position of the starting point
185 * @param double The vertical position of the starting point
186 * @param double The horizontal position of the ending point
187 * @param double The vertical position of the ending point
193 function PMA_PDF_lineScale($x1, $y1, $x2, $y2)
195 $x1 = ($x1 - $this->x_min
) / $this->scale +
$this->l_marg
;
196 $y1 = ($y1 - $this->y_min
) / $this->scale +
$this->t_marg
;
197 $x2 = ($x2 - $this->x_min
) / $this->scale +
$this->l_marg
;
198 $y2 = ($y2 - $this->y_min
) / $this->scale +
$this->t_marg
;
199 $this->Line($x1, $y1, $x2, $y2);
200 } // end of the "PMA_PDF_lineScale" function
204 * Sets x and y scaled positions
206 * @param double The x position
207 * @param double The y position
213 function PMA_PDF_setXyScale($x, $y)
215 $x = ($x - $this->x_min
) / $this->scale +
$this->l_marg
;
216 $y = ($y - $this->y_min
) / $this->scale +
$this->t_marg
;
217 $this->SetXY($x, $y);
218 } // end of the "PMA_PDF_setXyScale" function
222 * Sets the X scaled positions
224 * @param double The x position
230 function PMA_PDF_setXScale($x)
232 $x = ($x - $this->x_min
) / $this->scale +
$this->l_marg
;
234 } // end of the "PMA_PDF_setXScale" function
238 * Sets the scaled font size
240 * @param double The font size (in points)
244 * @see FPDF::SetFontSize()
246 function PMA_PDF_setFontSizeScale($size)
248 // Set font size in points
249 $size = $size / $this->scale
;
250 $this->SetFontSize($size);
251 } // end of the "PMA_PDF_setFontSizeScale" function
255 * Sets the scaled line width
257 * @param double The line width
261 * @see FPDF::SetLineWidth()
263 function PMA_PDF_setLineWidthScale($width)
265 $width = $width / $this->scale
;
266 $this->SetLineWidth($width);
267 } // end of the "PMA_PDF_setLineWidthScale" function
271 * Displays an error message
273 * @param string the error mesage
275 * @global array the PMA configuration array
276 * @global integer the current server id
277 * @global string the current language
278 * @global string the charset to convert to
279 * @global string the current database name
280 * @global string the current charset
281 * @global string the current text direction
282 * @global string a localized string
283 * @global string an other localized string
287 function PMA_PDF_die($error_message = '')
290 global $server, $lang, $convcharset, $db;
291 global $charset, $text_dir, $strRunning, $strDatabase;
293 include('./header.inc.php3');
295 echo '<p><b>PDF - '. $GLOBALS['strError'] . '</b></p>' . "\n";
296 if (!empty($error_message)) {
297 $error_message = htmlspecialchars($error_message);
300 echo ' ' . $error_message . "\n";
303 echo '<a href="db_details_structure.php3?' . PMA_generate_common_url($db)
304 . '">' . $GLOBALS['strBack'] . '</a>';
307 include('./footer.inc.php3');
309 } // end of the "PMA_PDF_die()" function
313 * Aliases the "Error()" function from the FPDF class to the
314 * "PMA_PDF_die()" one
316 * @param string the error mesage
322 function Error($error_message = '')
324 $this->PMA_PDF_die($error_message);
325 } // end of the "Error()" method
329 // We only show this if we find something in the new pdf_pages table
331 // This function must be named "Header" to work with the FPDF library
333 global $cfgRelation,$db,$pdf_page_number,$with_doc;
335 $test_query = 'SELECT * FROM ' . PMA_backquote($cfgRelation['pdf_pages'])
336 . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
337 . ' AND page_nr = \'' . $pdf_page_number . '\'';
338 $test_rs = PMA_query_as_cu($test_query);
339 $pages = @PMA_mysql_fetch_array
($test_rs);
340 $this->SetFont('', 'B', 14);
341 $this->Cell(0,6, ucfirst($pages['page_descr']),'B',1,'C');
342 $this->SetFont('', '');
347 // This function must be named "Footer" to work with the FPDF library
351 $this->SetFont('', '',14);
352 $this->Cell(0,6, $GLOBALS['strPageNumber'] .' '.$this->PageNo() .'/{nb}','T',0,'C');
353 $this->Cell(0,6, PMA_localisedDate(),0,1,'R');
357 function Bookmark($txt,$level=0,$y=0)
360 $this->Outlines
[0][]=$level;
361 $this->Outlines
[1][]=$txt;
362 $this->Outlines
[2][]=$this->page
;
365 $this->Outlines
[3][]=round($this->hPt
-$y*$this->k
,2);
368 function _putbookmarks()
370 if(count($this->Outlines
)>0)
374 //Take the number of sub elements for an outline
375 $nb_outlines=sizeof($this->Outlines
[0]);
376 $first_level=array();
379 for( $i=0; $i<$nb_outlines; $i++
)
381 $level=$this->Outlines
[0][$i];
389 //Take the previous outline in the same level
390 while( $this->Outlines
[0][$cursor] > $level && $cursor > 0)
392 if( $this->Outlines
[0][$cursor] == $level)
395 if( $i<$nb_outlines-1)
398 while( isset($this->Outlines
[0][$cursor]) && $this->Outlines
[0][$cursor] > $level)
400 //Take the immediate kid in level + 1
401 if( $this->Outlines
[0][$cursor] == $level+
1)
409 //Take the next outline in the same level
410 while( $this->Outlines
[0][$cursor] > $level && ($cursor+
1 < sizeof($this->Outlines
[0])))
412 if( $this->Outlines
[0][$cursor] == $level)
416 $parent[$level+
1]=$this->n
;
418 $first_level[]=$this->n
;
420 $this->_out('/Title ('.$this->Outlines
[1][$i].')');
421 $this->_out('/Parent '.$parent[$level].' 0 R');
423 $this->_out('/Prev '.($memo_n+
$prev+
1).' 0 R');
425 $this->_out('/Next '.($this->n+
$next-$i).' 0 R');
426 $this->_out('/Dest ['.(1+
(2*$this->Outlines
[2][$i])).' 0 R /XYZ null '.$this->Outlines
[3][$i].' null]');
429 $this->_out('/First '.($this->n+
1).' 0 R');
430 $this->_out('/Last '.($this->n+
$last-$i).' 0 R');
431 $this->_out('/Count -'.$kids);
434 $this->_out('endobj');
436 //First page of outlines
438 $this->def_outlines
= $this->n
;
440 $this->_out('/Type');
441 $this->_out('/Outlines');
442 $this->_out('/First '.$first_level[0].' 0 R');
443 $this->_out('/Last '.$first_level[sizeof($first_level)-1].' 0 R');
444 $this->_out('/Count '.sizeof($first_level));
446 $this->_out('endobj');
450 function _putresources()
452 parent
::_putresources();
453 $this->_putbookmarks();
456 function _putcatalog()
458 parent
::_putcatalog();
459 if(count($this->Outlines
)>0)
461 $this->_out('/Outlines '.$this->def_outlines
.' 0 R');
462 $this->_out('/PageMode /UseOutlines');
465 function SetWidths($w)
471 function Row($data,$links)
475 for($i=0;$i<count($data);$i++
)
476 $nb=max($nb,$this->NbLines($this->widths
[$i],$data[$i]));
477 $il = $this->FontSize
;
479 // page break if necessary
480 $this->CheckPageBreak($h);
482 for($i=0;$i<count($data);$i++
)
484 $w=$this->widths
[$i];
485 // save current position
489 $this->Rect($x,$y,$w,$h);
490 if (isset($links[$i]))
491 $this->Link($x,$y,$w,$h,$links[$i]);
493 $this->MultiCell($w,$il+
1,$data[$i],0,'L');
495 $this->SetXY($x+
$w,$y);
501 function CheckPageBreak($h)
503 // if height h overflows, manual page break
504 if($this->GetY()+
$h>$this->PageBreakTrigger
)
505 $this->AddPage($this->CurOrientation
);
508 function NbLines($w,$txt)
510 // compute number of lines used by a multicell of width w
511 $cw=&$this->CurrentFont
['cw'];
513 $w=$this->w
-$this->rMargin
-$this->x
;
514 $wmax=($w-2*$this->cMargin
)*1000/$this->FontSize
;
515 $s=str_replace("\r",'',$txt);
517 if($nb>0 and $s[$nb-1]=="\n")
559 } // end of the "PMA_PDF" class
563 * Draws tables schema
572 * Defines private properties
578 var $fields = array();
579 var $height_cell = 6;
581 var $primary = array();
585 * Sets the width of the table
587 * @param integer The font size
589 * @global object The current PDF document
595 function PMA_RT_Table_setWidth($ff)
597 // this looks buggy to me... does it really work if
598 // there are fields that require wider cells than the name of the table?
601 reset($this->fields
);
602 while (list(, $field) = each($this->fields
)) {
603 $this->width
= max($this->width
, $pdf->GetStringWidth($field));
605 $this->width +
= $pdf->GetStringWidth(' ');
606 $pdf->SetFont($ff, 'B');
607 $this->width
= max($this->width
, $pdf->GetStringWidth(' ' . $this->table_name
));
608 $pdf->SetFont($ff, '');
609 } // end of the "PMA_RT_Table_setWidth()" method
613 * Sets the height of the table
617 function PMA_RT_Table_setHeight()
619 $this->height
= (count($this->fields
) +
1) * $this->height_cell
;
620 } // end of the "PMA_RT_Table_setHeight()" method
626 * @param boolean Whether to display table position or not
627 * @param integer The font size
628 * @param boolean Whether all tables should have the same width or not
629 * @param integer The max. with among tables
631 * @global object The current PDF document
637 function PMA_RT_Table_draw($show_info, $ff)
639 global $pdf, $with_doc;
641 $pdf->PMA_PDF_setXyScale($this->x
, $this->y
);
642 $pdf->SetFont($ff, 'B');
643 $pdf->SetTextColor(200);
644 $pdf->SetFillColor(0, 0, 128);
645 if ($with_doc) $pdf->SetLink($pdf->PMA_links
['RT'][$this->table_name
]['-'],-1);
646 else $pdf->PMA_links
['doc'][$this->table_name
]['-'] = '';
648 $pdf->PMA_PDF_cellScale($this->width
, $this->height_cell
, sprintf('%.0f', $this->width
) . 'x' . sprintf('%.0f', $this->height
) . ' ' . $this->table_name
, 1, 1, 'C', 1,$pdf->PMA_links
['doc'][$this->table_name
]['-']);
650 $pdf->PMA_PDF_cellScale($this->width
, $this->height_cell
, $this->table_name
, 1, 1, 'C', 1,$pdf->PMA_links
['doc'][$this->table_name
]['-']);
652 $pdf->PMA_PDF_setXScale($this->x
);
653 $pdf->SetFont($ff, '');
654 $pdf->SetTextColor(0);
655 $pdf->SetFillColor(255);
657 reset($this->fields
);
658 while (list(, $field) = each($this->fields
)) {
660 // if (in_array($field, $this->primary)) {
661 if (PMA_isInto($field, $this->primary
) != -1) {
662 $pdf->SetFillColor(215, 121, 123);
664 if ($field == $this->displayfield
) {
665 $pdf->SetFillColor(142, 159, 224);
667 if ($with_doc) $pdf->SetLink($pdf->PMA_links
['RT'][$this->table_name
][$field],-1);
668 else $pdf->PMA_links
['doc'][$this->table_name
][$field] = '';
671 $pdf->PMA_PDF_cellScale($this->width
, $this->height_cell
, ' ' . $field, 1, 1, 'L', 1,$pdf->PMA_links
['doc'][$this->table_name
][$field]);
672 $pdf->PMA_PDF_setXScale($this->x
);
673 $pdf->SetFillColor(255);
676 /*if ($pdf->PageNo() > 1) {
677 $pdf->PMA_PDF_die($GLOBALS['strScaleFactorSmall']);
679 } // end of the "PMA_RT_Table_draw()" method
683 * The "PMA_RT_Table" constructor
685 * @param string The table name
686 * @param integer The font size
687 * @param integer The max. with among tables
689 * @global object The current PDF document
690 * @global integer The current page number (from the
691 * $cfg['Servers'][$i]['table_coords'] table)
692 * @global array The relations settings
693 * @global string The current db name
697 * @see PMA_PDF, PMA_RT_Table::PMA_RT_Table_setWidth,
698 * PMA_RT_Table::PMA_RT_Table_setHeight
700 function PMA_RT_Table($table_name, $ff, &$same_wide_width)
702 global $pdf, $pdf_page_number, $cfgRelation, $db;
704 $this->table_name
= $table_name;
705 $sql = 'DESCRIBE ' . PMA_backquote($table_name);
706 $result = PMA_mysql_query($sql);
707 if (!$result ||
!mysql_num_rows($result)) {
708 $pdf->PMA_PDF_die(sprintf($GLOBALS['strPdfInvalidTblName'], $table_name));
711 while ($row = PMA_mysql_fetch_array($result)) {
712 $this->fields
[] = $row[0];
716 $this->PMA_RT_Table_setWidth($ff);
717 $this->PMA_RT_Table_setHeight();
718 if ($same_wide_width < $this->width
) {
719 $same_wide_width = $this->width
;
723 $sql = 'SELECT x, y FROM '
724 . PMA_backquote($cfgRelation['table_coords'])
725 . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
726 . ' AND table_name = \'' . PMA_sqlAddslashes($table_name) . '\''
727 . ' AND pdf_page_number = ' . $pdf_page_number;
728 $result = PMA_query_as_cu($sql);
730 if (!$result ||
!mysql_num_rows($result)) {
731 $pdf->PMA_PDF_die(sprintf($GLOBALS['strConfigureTableCoord'], $table_name));
733 list($this->x
, $this->y
) = PMA_mysql_fetch_array($result);
734 $this->x
= (double) $this->x
;
735 $this->y
= (double) $this->y
;
738 $this->displayfield
= PMA_getDisplayField($db, $table_name);
741 $sql = 'SHOW index FROM ' . PMA_backquote($table_name);
742 $result = PMA_mysql_query($sql);
743 if ($result && mysql_num_rows($result) > 0) {
744 while ($row = PMA_mysql_fetch_array($result)) {
745 if ($row['Key_name'] == 'PRIMARY') {
746 $this->primary
[] = $row['Column_name'];
750 } // end of the "PMA_RT_Table()" method
751 } // end class "PMA_RT_Table"
756 * Draws relation links
762 class PMA_RT_Relation
765 * Defines private properties
770 var $x_dest, $y_dest;
775 * Gets arrows coordinates
777 * @param string The current table name
778 * @param string The relation column name
780 * @return array Arrows coordinates
784 function PMA_RT_Relation_getXy($table, $column)
786 $pos = array_search($column, $table->fields
);
787 // x_left, x_right, y
788 return array($table->x
, $table->x + +
$table->width
, $table->y +
($pos +
1.5) * $table->height_cell
);
789 } // end of the "PMA_RT_Relation_getXy()" method
793 * Do draws relation links
795 * @param boolean Whether to use one color per relation or not
796 * @param integer The id of the link to draw
798 * @global object The current PDF document
804 function PMA_RT_Relation_draw($change_color, $i)
821 list ($a, $b, $c) = $case[$d];
822 $e = (1 - ($j - 1) / 6);
823 $pdf->SetDrawColor($a * 255 * $e, $b * 255 * $e, $c * 255 * $e); }
825 $pdf->SetDrawColor(0);
826 } // end if... else...
828 $pdf->PMA_PDF_setLineWidthScale(0.2);
829 $pdf->PMA_PDF_lineScale($this->x_src
, $this->y_src
, $this->x_src +
$this->src_dir
* $this->w_tick
, $this->y_src
);
830 $pdf->PMA_PDF_lineScale($this->x_dest +
$this->dest_dir
* $this->w_tick
, $this->y_dest
, $this->x_dest
, $this->y_dest
);
831 $pdf->PMA_PDF_setLineWidthScale(0.1);
832 $pdf->PMA_PDF_lineScale($this->x_src +
$this->src_dir
* $this->w_tick
, $this->y_src
, $this->x_dest +
$this->dest_dir
* $this->w_tick
, $this->y_dest
);
835 $root2 = 2 * sqrt(2);
836 $pdf->PMA_PDF_lineScale($this->x_src +
$this->src_dir
* $this->w_tick
* 0.75, $this->y_src
, $this->x_src +
$this->src_dir
* (0.75 - 1 / $root2) * $this->w_tick
, $this->y_src +
$this->w_tick
/ $root2);
837 $pdf->PMA_PDF_lineScale($this->x_src +
$this->src_dir
* $this->w_tick
* 0.75, $this->y_src
, $this->x_src +
$this->src_dir
* (0.75 - 1 / $root2) * $this->w_tick
, $this->y_src
- $this->w_tick
/ $root2);
839 $pdf->PMA_PDF_lineScale($this->x_dest +
$this->dest_dir
* $this->w_tick
/ 2, $this->y_dest
, $this->x_dest +
$this->dest_dir
* (0.5 +
1 / $root2) * $this->w_tick
, $this->y_dest +
$this->w_tick
/ $root2);
840 $pdf->PMA_PDF_lineScale($this->x_dest +
$this->dest_dir
* $this->w_tick
/ 2, $this->y_dest
, $this->x_dest +
$this->dest_dir
* (0.5 +
1 / $root2) * $this->w_tick
, $this->y_dest
- $this->w_tick
/ $root2);
841 $pdf->SetDrawColor(0);
842 } // end of the "PMA_RT_Relation_draw()" method
846 * The "PMA_RT_Relation" constructor
848 * @param string The master table name
849 * @param string The relation field in the master table
850 * @param string The foreign table name
851 * @param string The relation field in the foreign table
856 * @see PMA_RT_Relation::PMA_RT_Relation_getXy
858 function PMA_RT_Relation($master_table, $master_field, $foreign_table, $foreign_field)
860 $src_pos = $this->PMA_RT_Relation_getXy($master_table , $master_field);
861 $dest_pos = $this->PMA_RT_Relation_getXy($foreign_table, $foreign_field);
862 $src_left = $src_pos[0] - $this->w_tick
;
863 $src_right = $src_pos[1] +
$this->w_tick
;
864 $dest_left = $dest_pos[0] - $this->w_tick
;
865 $dest_right = $dest_pos[1] +
$this->w_tick
;
867 $d1 = abs($src_left - $dest_left);
868 $d2 = abs($src_right - $dest_left);
869 $d3 = abs($src_left - $dest_right);
870 $d4 = abs($src_right - $dest_right);
871 $d = min($d1, $d2, $d3, $d4);
874 $this->x_src
= $src_pos[0];
876 $this->x_dest
= $dest_pos[0];
877 $this->dest_dir
= -1;
878 } else if ($d == $d2) {
879 $this->x_src
= $src_pos[1];
881 $this->x_dest
= $dest_pos[0];
882 $this->dest_dir
= -1;
883 } else if ($d == $d3) {
884 $this->x_src
= $src_pos[0];
886 $this->x_dest
= $dest_pos[1];
889 $this->x_src
= $src_pos[1];
891 $this->x_dest
= $dest_pos[1];
894 $this->y_src
= $src_pos[2];
895 $this->y_dest
= $dest_pos[2];
896 } // end of the "PMA_RT_Relation()" method
897 } // end of the "PMA_RT_Relation" class
902 * Draws and send the database schema
911 * Defines private properties
913 var $tables = array();
914 var $relations = array();
929 * Sets X and Y minimum and maximum for a table cell
931 * @param string The table name
935 function PMA_RT_setMinMax($table)
937 $this->x_max
= max($this->x_max
, $table->x +
$table->width
);
938 $this->y_max
= max($this->y_max
, $table->y +
$table->height
);
939 $this->x_min
= min($this->x_min
, $table->x
);
940 $this->y_min
= min($this->y_min
, $table->y
);
941 } // end of the "PMA_RT_setMinMax()" method
945 * Defines relation objects
947 * @param string The master table name
948 * @param string The relation field in the master table
949 * @param string The foreign table name
950 * @param string The relation field in the foreign table
954 * @see PMA_RT_setMinMax()
956 function PMA_RT_addRelation($master_table , $master_field, $foreign_table, $foreign_field)
958 if (!isset($this->tables
[$master_table])) {
959 $this->tables
[$master_table] = new PMA_RT_Table($master_table, $this->ff
, $this->tablewidth
);
960 $this->PMA_RT_setMinMax($this->tables
[$master_table]);
962 if (!isset($this->tables
[$foreign_table])) {
963 $this->tables
[$foreign_table] = new PMA_RT_Table($foreign_table, $this->ff
, $this->tablewidth
);
964 $this->PMA_RT_setMinMax($this->tables
[$foreign_table]);
966 $this->relations
[] = new PMA_RT_Relation($this->tables
[$master_table], $master_field, $this->tables
[$foreign_table], $foreign_field);
967 } // end of the "PMA_RT_addRelation()" method
973 * @global object the current PMA_PDF instance
979 function PMA_RT_strokeGrid()
983 $pdf->SetMargins(0, 0);
984 $pdf->SetDrawColor(200, 200, 200);
986 // Draws horizontal lines
987 for ($l = 0; $l < 21; $l++
) {
988 $pdf->line(0, $l * 10, 297, $l * 10);
991 $pdf->SetXY(0, $l * 10);
992 $label = (string) sprintf('%.0f', ($l * 10 - $this->t_marg
) * $this->scale +
$this->y_min
);
993 $pdf->Cell(5, 5, ' ' . $label);
997 // Draws vertical lines
998 for ($j = 0; $j < 30 ;$j++
) {
999 $pdf->line($j * 10, 0, $j * 10, 210);
1000 $pdf->SetXY($j * 10, 0);
1001 $label = (string) sprintf('%.0f', ($j * 10 - $this->l_marg
) * $this->scale +
$this->x_min
);
1002 $pdf->Cell(5, 7, $label);
1004 } // end of the "PMA_RT_strokeGrid()" method
1008 * Draws relation arrows
1010 * @param boolean Whether to use one color per relation or not
1014 * @see PMA_RT_Relation::PMA_RT_Relation_draw()
1016 function PMA_RT_drawRelations($change_color)
1019 reset($this->relations
);
1020 while (list(, $relation) = each($this->relations
)) {
1021 $relation->PMA_RT_Relation_draw($change_color, $i);
1024 } // end of the "PMA_RT_drawRelations()" method
1030 * @param boolean Whether to display table position or not
1034 * @see PMA_RT_Table::PMA_RT_Table_draw()
1036 function PMA_RT_drawTables($show_info)
1038 reset($this->tables
);
1039 while (list(, $table) = each($this->tables
)) {
1040 $table->PMA_RT_Table_draw($show_info, $this->ff
);
1042 } // end of the "PMA_RT_drawTables()" method
1046 * Ouputs the PDF document to a file
1048 * @global object The current PDF document
1049 * @global string The current database name
1050 * @global integer The current page number (from the
1051 * $cfg['Servers'][$i]['table_coords'] table)
1057 function PMA_RT_showRt()
1059 global $pdf, $db, $pdf_page_number, $cfgRelation;
1061 $pdf->SetFontSize(14);
1062 $pdf->SetLineWidth(0.2);
1063 $pdf->SetDisplayMode('fullpage');
1064 // Get the name of this pdfpage to use as filename (Mike Beck)
1065 $_name_sql = 'SELECT page_descr FROM ' . PMA_backquote($cfgRelation['pdf_pages'])
1066 . ' WHERE page_nr = ' . $pdf_page_number;
1067 $_name_rs = PMA_query_as_cu($_name_sql);
1069 $_name_row = PMA_mysql_fetch_row($_name_rs);
1070 $filename = $_name_row[0] . '.pdf';
1072 // i don't know if there is a chance for this to happen, but rather be on the safe side:
1073 if (empty($filename)) {
1074 $filename = $pdf_page_number . '.pdf';
1076 $pdf->Output($db . '_' . $filename, TRUE);
1077 //$pdf->Output('', TRUE);
1078 } // end of the "PMA_RT_showRt()" method
1082 * The "PMA_RT" constructor
1084 * @param mixed The scaling factor
1085 * @param integer The page number to draw (from the
1086 * $cfg['Servers'][$i]['table_coords'] table)
1087 * @param boolean Whether to display table position or not
1088 * @param boolean Whether to use one color per relation or not
1089 * @param boolean Whether to draw grids or not
1090 * @param boolean Whether all tables should have the same width or not
1092 * @global object The current PDF document
1093 * @global string The current db name
1094 * @global array The relations settings
1100 function PMA_RT( $which_rel, $show_info = 0, $change_color = 0 , $show_grid = 0, $all_tab_same_wide = 0, $orientation = 'L')
1102 global $pdf, $db, $cfgRelation, $with_doc;
1104 // Font face depends on the current language
1105 $this->ff
= str_replace('"', '', substr($GLOBALS['right_font_family'], 0, strpos($GLOBALS['right_font_family'], ',')));
1106 $this->same_wide
= $all_tab_same_wide;
1108 // Initializes a new document
1109 $pdf = new PMA_PDF('L');
1110 $pdf->title
= sprintf($GLOBALS['strPdfDbSchema'], $GLOBALS['db'], $which_rel);
1113 $pdf->SetTitle($pdf->title
);
1114 $pdf->SetAuthor('phpMyAdmin ' . PMA_VERSION
);
1115 $pdf->AliasNbPages();
1117 // fonts added to phpMyAdmin and considered non-standard by fpdf
1118 // (Note: those tahoma fonts are iso-8859-2 based)
1119 if ($this->ff
== 'tahoma') {
1120 $pdf->AddFont('tahoma','','tahoma.php3');
1121 $pdf->AddFont('tahoma','B','tahomab.php3');
1124 $pdf->SetFont($this->ff
, '', 14);
1125 $pdf->SetAutoPageBreak('auto');
1127 // Gets tables on this page
1128 $tab_sql = 'SELECT table_name FROM ' . PMA_backquote($cfgRelation['table_coords'])
1129 . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
1130 . ' AND pdf_page_number = ' . $which_rel;
1131 $tab_rs = PMA_query_as_cu($tab_sql);
1132 if (!$tab_rs ||
!mysql_num_rows($tab_rs) > 0) {
1133 $pdf->PMA_PDF_die($GLOBALS['strPdfNoTables']);
1134 // die('No tables');
1136 while ($curr_table = @PMA_mysql_fetch_array
($tab_rs)) {
1137 $alltables[] = PMA_sqlAddslashes($curr_table['table_name']);
1138 $intable = '\'' . implode('\', \'', $alltables) . '\'';
1142 $pdf->SetAutoPageBreak('auto',15);
1144 PMA_RT_DOC($alltables);
1145 $pdf->SetAutoPageBreak('auto');
1153 $pdf->SetLink($pdf->PMA_links
['RT']['-'],-1);
1154 $pdf->Bookmark($GLOBALS['strRelationalSchema']);
1155 $pdf->SetAlias('{00}', $pdf->PageNo()) ;
1163 while (list(, $table) = each ($alltables)) {
1164 if (!isset($this->tables
[$table])) {
1165 $this->tables
[$table] = new PMA_RT_Table($table, $this->ff
, $this->tablewidth
);
1169 while (list(, $table) = each ($alltables)) {
1170 if($this->same_wide
){
1171 $this->tables
[$table]->width
= $this->tablewidth
;
1173 $this->PMA_RT_setMinMax($this->tables
[$table]);
1175 // Defines the scale factor
1176 $this->scale
= ceil(max(($this->x_max
- $this->x_min
) / (297 - $this->r_marg
- $this->l_marg
), ($this->y_max
- $this->y_min
) / (210 - $this->t_marg
- $this->b_marg
)) * 100) / 100;
1177 $pdf->PMA_PDF_setScale($this->scale
, $this->x_min
, $this->y_min
, $this->l_marg
, $this->t_marg
);
1180 // Builds and save the PDF document
1181 $pdf->PMA_PDF_setLineWidthScale(0.1);
1184 $pdf->SetFontSize(10);
1185 $this->PMA_RT_strokeGrid();
1187 $pdf->PMA_PDF_setFontSizeScale(14);
1192 $sql = 'SELECT * FROM ' . PMA_backquote($cfgRelation['relation'])
1193 . ' WHERE master_db = \'' . PMA_sqlAddslashes($db) . '\' '
1194 . ' AND foreign_db = \'' . PMA_sqlAddslashes($db) . '\' '
1195 . ' AND master_table IN (' . $intable . ')'
1196 . ' AND foreign_table IN (' . $intable . ')';
1197 $result = PMA_query_as_cu($sql);
1199 // loic1: also show tables without relations
1200 $norelations = TRUE;
1201 if ($result && mysql_num_rows($result) > 0) {
1202 $norelations = FALSE;
1203 while ($row = PMA_mysql_fetch_array($result)) {
1204 $this->PMA_RT_addRelation($row['master_table'] , $row['master_field'], $row['foreign_table'], $row['foreign_field']);
1210 if ($norelations == FALSE) {
1211 $this->PMA_RT_drawRelations($change_color);
1213 $this->PMA_RT_drawTables($show_info);
1215 $this->PMA_RT_showRt();
1216 } // end of the "PMA_RT()" method
1217 } // end of the "PMA_RT" class
1219 function PMA_RT_DOC($alltables ){
1220 global $db, $pdf, $orientation;
1223 $pdf->Cell(0,9, $GLOBALS['strTableOfContents'],1,0,'C');
1227 while(list(, $table) = each($alltables)) {
1228 $pdf->PMA_links
['doc'][$table]['-'] = $pdf->AddLink();
1231 $pdf->Cell(0,6,$GLOBALS['strPageNumber'] . ' {'.sprintf("%02d", $i).'}',0,0,'R',0,$pdf->PMA_links
['doc'][$table]['-']);
1233 $pdf->Cell(0,6,$i.' '. $table,0,1,'L',0,$pdf->PMA_links
['doc'][$table]['-']);
1236 $local_query = 'SHOW FIELDS FROM ' . PMA_backquote($table);
1237 $result = PMA_mysql_query($local_query) or PMA_mysqlDie('', $local_query, '', $err_url);
1238 while ($row = PMA_mysql_fetch_array($result)) {
1240 $field_name = $row['Field'];
1241 $pdf->PMA_links
['doc'][$table][$field_name] =$pdf->AddLink();
1242 //$pdf->Cell(0,6,$field_name,0,1,'L',0,$pdf->PMA_links['doc'][$table][$field_name]);
1244 $lasttable = $table;
1247 $pdf->PMA_links
['RT']['-'] =$pdf->AddLink();
1249 $pdf->Cell(0,6,$GLOBALS['strPageNumber'] . ' {00}',0,0,'R',0,$pdf->PMA_links
['doc'][$lasttable]['-']);
1251 $pdf->Cell(0,6,$i.' '. $GLOBALS['strRelationalSchema'],0,1,'L',0,$pdf->PMA_links
['RT']['-']);
1254 while(list(, $table) = each($alltables)) {
1256 $pdf->addpage($GLOBALS['orientation']);
1257 $pdf->Bookmark($table);
1258 $pdf->SetAlias('{'.sprintf("%02d", $z).'}', $pdf->PageNo()) ;
1259 $pdf->PMA_links
['RT'][$table]['-'] =$pdf->AddLink();
1260 $pdf->SetLink($pdf->PMA_links
['doc'][$table]['-'],-1);
1261 $pdf->SetFont('', 'B',18);
1262 $pdf->Cell(0,8, $z .' '.$table,1,1,'C',0,$pdf->PMA_links
['RT'][$table]['-']);
1263 $pdf->SetFont('', '',8);
1266 $cfgRelation = PMA_getRelationsParam();
1267 if ($cfgRelation['commwork']) {
1268 $comments = PMA_getComments($db, $table);
1270 if ($cfgRelation['mimework']) {
1271 $mime_map = PMA_getMIME($db, $table, true);
1275 * Gets table informations
1277 // The 'show table' statement works correct since 3.23.03
1278 if (PMA_MYSQL_INT_VERSION
>= 32303) {
1279 $local_query = "SHOW TABLE STATUS LIKE '" . PMA_sqlAddslashes($table, TRUE) . "'";
1280 $result = PMA_mysql_query($local_query) or PMA_mysqlDie('', $local_query, '', $err_url);
1281 $showtable = PMA_mysql_fetch_array($result);
1282 $num_rows = (isset($showtable['Rows']) ?
$showtable['Rows'] : 0);
1283 $show_comment = (isset($showtable['Comment']) ?
$showtable['Comment'] : '');
1284 $create_time = (isset($showtable['Create_time']) ?
PMA_localisedDate(strtotime($showtable['Create_time'])) : '');
1285 $update_time = (isset($showtable['Update_time']) ?
PMA_localisedDate(strtotime($showtable['Update_time'])) : '');
1286 $check_time = (isset($showtable['Check_time']) ?
PMA_localisedDate(strtotime($showtable['Check_time'])) : '');
1288 $showtable = array();
1289 $num_rows = PMA_countRecords($db, $table, TRUE);
1294 } // end display comments
1296 mysql_free_result($result);
1301 * Gets table keys and retains them
1303 $local_query = 'SHOW KEYS FROM ' . PMA_backquote($table);
1304 $result = PMA_mysql_query($local_query) or PMA_mysqlDie('', $local_query, '', $err_url);
1308 $indexes_info = array();
1309 $indexes_data = array();
1310 $pk_array = array(); // will be use to emphasis prim. keys in the table
1312 while ($row = PMA_mysql_fetch_array($result)) {
1313 // Backups the list of primary keys
1314 if ($row['Key_name'] == 'PRIMARY') {
1315 $primary .= $row['Column_name'] . ', ';
1316 $pk_array[$row['Column_name']] = 1;
1318 // Retains keys informations
1319 if ($row['Key_name'] != $lastIndex ){
1320 $indexes[] = $row['Key_name'];
1321 $lastIndex = $row['Key_name'];
1323 $indexes_info[$row['Key_name']]['Sequences'][] = $row['Seq_in_index'];
1324 $indexes_info[$row['Key_name']]['Non_unique'] = $row['Non_unique'];
1325 if (isset($row['Cardinality'])) {
1326 $indexes_info[$row['Key_name']]['Cardinality'] = $row['Cardinality'];
1328 // I don't know what does following column mean....
1329 // $indexes_info[$row['Key_name']]['Packed'] = $row['Packed'];
1330 $indexes_info[$row['Key_name']]['Comment'] = $row['Comment'];
1332 $indexes_data[$row['Key_name']][$row['Seq_in_index']]['Column_name'] = $row['Column_name'];
1333 if (isset($row['Sub_part'])) {
1334 $indexes_data[$row['Key_name']][$row['Seq_in_index']]['Sub_part'] = $row['Sub_part'];
1339 mysql_free_result($result);
1344 * Gets fields properties
1346 $local_query = 'SHOW FIELDS FROM ' . PMA_backquote($table);
1347 $result = PMA_mysql_query($local_query) or PMA_mysqlDie('', $local_query, '', $err_url);
1348 $fields_cnt = mysql_num_rows($result);
1351 // Check if we can use Relations (Mike Beck)
1352 if (!empty($cfgRelation['relation'])) {
1353 // Find which tables are related with the current one and write it in
1355 $res_rel = PMA_getForeigners($db, $table);
1357 if (count($res_rel) > 0) {
1369 * Displays the comments of the table if MySQL >= 3.23
1373 if (!empty($show_comment)) {
1374 $pdf->Cell(0,3,$GLOBALS['strTableComments'] . ' : ' . $show_comment,0,1);
1378 if (!empty($create_time)) {
1379 $pdf->Cell(0,3,$GLOBALS['strStatCreateTime'] . ': ' . $create_time,0,1);
1383 if (!empty($update_time)) {
1384 $pdf->Cell(0,3,$GLOBALS['strStatUpdateTime'] . ': ' . $update_time,0,1);
1388 if (!empty($check_time)) {
1389 $pdf->Cell(0,3,$GLOBALS['strStatCheckTime'] . ': ' . $check_time,0,1);
1393 if ($break == true) {
1394 $pdf->Cell(0,3,'',0,1);
1399 $pdf->SetFont('', 'B');
1400 if (isset($orientation) && $orientation == 'L') {
1401 $pdf->Cell(25,8,ucfirst($GLOBALS['strField']),1,0,'C');
1402 $pdf->Cell(20,8,ucfirst($GLOBALS['strType']),1,0,'C');
1403 $pdf->Cell(20,8,ucfirst($GLOBALS['strAttr']),1,0,'C');
1404 $pdf->Cell(10,8,ucfirst($GLOBALS['strNull']),1,0,'C');
1405 $pdf->Cell(20,8,ucfirst($GLOBALS['strDefault']),1,0,'C');
1406 $pdf->Cell(25,8,ucfirst($GLOBALS['strExtra']),1,0,'C');
1407 $pdf->Cell(45,8,ucfirst($GLOBALS['strLinksTo']),1,0,'C');
1408 $pdf->Cell(67,8,ucfirst($GLOBALS['strComments']),1,0,'C');
1409 $pdf->Cell(45,8,'MIME',1,1,'C');
1410 $pdf->SetWidths(array(25,20,20,10,20,25,45,67,45));
1412 $pdf->Cell(20,8,ucfirst($GLOBALS['strField']),1,0,'C');
1413 $pdf->Cell(20,8,ucfirst($GLOBALS['strType']),1,0,'C');
1414 $pdf->Cell(20,8,ucfirst($GLOBALS['strAttr']),1,0,'C');
1415 $pdf->Cell(10,8,ucfirst($GLOBALS['strNull']),1,0,'C');
1416 $pdf->Cell(15,8,ucfirst($GLOBALS['strDefault']),1,0,'C');
1417 $pdf->Cell(15,8,ucfirst($GLOBALS['strExtra']),1,0,'C');
1418 $pdf->Cell(30,8,ucfirst($GLOBALS['strLinksTo']),1,0,'C');
1419 $pdf->Cell(30,8,ucfirst($GLOBALS['strComments']),1,0,'C');
1420 $pdf->Cell(30,8,'MIME',1,1,'C');
1421 $pdf->SetWidths(array(20,20,20,10,15,15,30,30,30));
1423 $pdf->SetFont('', '');
1425 while ($row = PMA_mysql_fetch_array($result)) {
1426 $bgcolor = ($i %
2) ?
$GLOBALS['cfg']['BgcolorOne'] : $GLOBALS['cfg']['BgcolorTwo'];
1429 $type = $row['Type'];
1430 // reformat mysql query output - staybyte - 9. June 2001
1431 // loic1: set or enum types: slashes single quotes inside options
1432 if (eregi('^(set|enum)\((.+)\)$', $type, $tmp)) {
1433 $tmp[2] = substr(ereg_replace("([^,])''", "\\1\\'", ',' . $tmp[2]), 1);
1434 $type = $tmp[1] . '(' . str_replace(',', ', ', $tmp[2]) . ')';
1441 $type_nowrap = ' nowrap="nowrap"';
1442 $type = eregi_replace('BINARY', '', $type);
1443 $type = eregi_replace('ZEROFILL', '', $type);
1444 $type = eregi_replace('UNSIGNED', '', $type);
1449 $binary = eregi('BINARY', $row['Type'], $test);
1450 $unsigned = eregi('UNSIGNED', $row['Type'], $test);
1451 $zerofill = eregi('ZEROFILL', $row['Type'], $test);
1453 $strAttribute = ' ';
1455 $strAttribute = 'BINARY';
1458 $strAttribute = 'UNSIGNED';
1461 $strAttribute = 'UNSIGNED ZEROFILL';
1463 if (!isset($row['Default'])) {
1464 if ($row['Null'] != '') {
1465 $row['Default'] = 'NULL';
1468 $field_name = $row['Field'];
1470 $pdf->PMA_links
['RT'][$table][$field_name] =$pdf->AddLink();
1471 $pdf->Bookmark($field_name,1,-1);
1472 $pdf->SetLink($pdf->PMA_links
['doc'][$table][$field_name],-1);
1473 $pdf_row = array($field_name ,
1476 ($row['Null'] == '') ?
$GLOBALS['strNo'] : $GLOBALS['strYes'],
1477 ((isset($row['Default'])) ?
$row['Default'] : ''),
1479 ((isset($res_rel[$field_name])) ?
$res_rel[$field_name]['foreign_table'] . ' -> ' . $res_rel[$field_name]['foreign_field'] : ''),
1480 ((isset($comments[$field_name])) ?
$comments[$field_name] : '' ),
1481 ((isset($mime_map) && isset($mime_map[$field_name])) ?
str_replace('_', '/', $mime_map[$field_name]['mimetype']) : '' )
1483 $links[0] = $pdf->PMA_links
['RT'][$table][$field_name];
1484 if (isset($res_rel[$field_name]['foreign_table']) AND
1485 isset($res_rel[$field_name]['foreign_field']) AND
1486 isset($pdf->PMA_links
['doc'][$res_rel[$field_name]['foreign_table']][$res_rel[$field_name]['foreign_field']])
1487 ) $links[6] = $pdf->PMA_links
['doc'][$res_rel[$field_name]['foreign_table']][$res_rel[$field_name]['foreign_field']];
1488 else unset($links[6]);
1489 $pdf->Row($pdf_row, $links);
1491 /*$pdf->Cell(20,8,$field_name,1,0,'L',0,$pdf->PMA_links['RT'][$table][$field_name]);
1492 //echo ' ' . $field_name . ' ' . "\n";
1494 $pdf->Cell(20,8,$type,1,0,'L');
1495 $pdf->Cell(20,8,$strAttribute,1,0,'L');
1496 $pdf->Cell(15,8,,1,0,'L');
1497 $pdf->Cell(15,8,((isset($row['Default'])) ? $row['Default'] : ''),1,0,'L');
1498 $pdf->Cell(15,8,$row['Extra'],1,0,'L');
1500 if (isset($res_rel[$field_name])) {
1501 $pdf->Cell(30,8,$res_rel[$field_name]['foreign_table'] . ' -> ' . $res_rel[$field_name]['foreign_field'],1,0,'L');
1504 if ($cfgRelation['commwork']) {
1505 if (isset($comments[$field_name])) {
1506 $pdf->Cell(0,8,$comments[$field_name],1,0,'L');
1510 $pdf->SetFont('', '',14);
1511 mysql_free_result($result);
1515 } // end function PMA_RT_DOC
1521 if (!isset($pdf_page_number)) {
1522 $pdf_page_number = 1;
1524 $show_grid = (isset($show_grid) && $show_grid == 'on') ?
1 : 0;
1525 $show_color = (isset($show_color) && $show_color == 'on') ?
1 : 0;
1526 $show_table_dimension = (isset($show_table_dimension) && $show_table_dimension == 'on') ?
1 : 0;
1527 $all_tab_same_wide = (isset($all_tab_same_wide) && $all_tab_same_wide == 'on') ?
1 : 0;
1528 $with_doc = (isset($with_doc) && $with_doc == 'on') ?
1 : 0;
1529 $orientation = (isset($orientation) && $orientation == 'P') ?
'P' : 'L';
1530 PMA_mysql_select_db($db);
1532 $rt = new PMA_RT($pdf_page_number, $show_table_dimension, $show_color, $show_grid, $all_tab_same_wide, $orientation);