scale = $scale; $this->x_min = $x_min; $this->y_min = $y_min; $this->l_marg = $l_marg; $this->t_marg = $t_marg; } function PMA_PDF_cellScale($w, $h=0, $txt='', $border=0, $ln=0, $align='', $fill=0) { $h = $h/$this->scale; $w = $w/$this->scale; $this->Cell($w, $h, $txt, $border, $ln, $align, $fill); } function PMA_PDF_lineScale($x1, $y1, $x2, $y2) { $x1 = ($x1 - $this->x_min) / $this->scale + $this->l_marg; $y1 = ($y1 - $this->y_min) / $this->scale + $this->t_marg; $x2 = ($x2 - $this->x_min) / $this->scale + $this->l_marg; $y2 = ($y2 - $this->y_min) / $this->scale + $this->t_marg; $this->Line($x1, $y1, $x2, $y2); } function PMA_PDF_setXyScale($x, $y) { $x = ($x - $this->x_min) / $this->scale + $this->l_marg; $y = ($y - $this->y_min) / $this->scale + $this->t_marg; $this->SetXY($x, $y); } function PMA_PDF_setXScale($x) { $x = ($x - $this->x_min) / $this->scale + $this->l_marg; $this->SetX($x); } function PMA_PDF_setFontSizeScale($size) { // Set font size in points $size = $size / $this->scale; $this->SetFontSize($size); } function PMA_PDF_setLineWidthScale($width) { $width = $width / $this->scale; $this->SetLineWidth($width); } /** * Displays an error message * * @param string the error mesage * * @global array the PMA configuration array * @global integer the current server id * @global string the current language * @global string the current database name * @global string the current charset * @global string the current text direction * @global string a localized string * @global string an other localized string * * @access public */ function PMA_PDF_die($error_message = '') { global $cfg; global $server, $lang, $db; global $charset, $text_dir, $strRunning, $strDatabase; include('./header.inc.php3'); echo '
PDF - '. $GLOBALS['strError'] . '
' . "\n"; if (!empty($error_message)) { $error_message = htmlspecialchars($error_message); } echo '' . "\n"; echo ' ' . $error_message . "\n"; echo '
' . "\n"; echo '' . $GLOBALS['strBack'] . ''; echo "\n"; include('./footer.inc.php3'); exit(); } // end of the "PMA_PDF_die()" function } // end class "PMA_PDF" class PMA_RT { var $tables = array(); var $relations = array(); var $ff = 'Arial'; var $x_max = 0; var $y_max = 0; var $scale; var $x_min = 100000; var $y_min = 100000; var $t_marg = 10; var $b_marg = 10; var $l_marg = 10; var $r_marg = 10; function PMA_RT($scale, $which_rel, $show_info = 0, $change_color = 0 , $show_grid = 0) { global $pdf; $pdf = new PMA_PDF('L'); $pdf->cMargin = 0; $pdf->Open(); $pdf->AliasNbPages(); $pdf->Addpage(); $pdf->SetFont($this->ff, '', 14); $pdf->SetAutoPageBreak('auto'); $sql = 'SELECT * FROM ' . PMA_backquote($GLOBALS['cfg']['Server']['relation']) . ' WHERE pdf_page_number = ' . $which_rel; $result = mysql_query($sql); if (!$result || !mysql_num_rows($result)) { $pdf->PMA_PDF_die($GLOBALS['strPdfInvalidPageNum']); } while ($row = mysql_fetch_array($result)) { $this->PMA_RT_addRelation($row['master_table'] , $row['master_field'], $row['foreign_table'], $row['foreign_field']); } if ($scale == 'auto') { $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; $pdf->PMA_PDF_setScale($this->scale, $this->x_min, $this->y_min, $this->l_marg, $this->t_marg); } else { $this->scale = $scale; $pdf->PMA_PDF_setScale($scale); } $pdf->PMA_PDF_setLineWidthScale(0.1); $pdf->PMA_PDF_setFontSizeScale(14); if ($show_grid) { $this->PMA_RT_strokeGrid(); } $this->PMA_RT_drawRelations($change_color); $this->PMA_RT_drawTables($show_info); $this->PMA_RT_showRt(); } function PMA_RT_addRelation($master_table , $master_field, $foreign_table, $foreign_field) { if (!isset($this->tables[$master_table])) { $this->tables[$master_table] = new PMA_RT_Table($master_table, $this->ff); $this->PMA_RT_setMinMax($this->tables[$master_table]); } if (!isset($this->tables[$foreign_table])) { $this->tables[$foreign_table] = new PMA_RT_Table($foreign_table, $this->ff); $this->PMA_RT_setMinMax($this->tables[$foreign_table]); } $this->relations[] = new PMA_RT_Relation($this->tables[$master_table], $master_field, $this->tables[$foreign_table], $foreign_field); } function PMA_RT_setMinMax($table) { $this->x_max = max($this->x_max, $table->x + $table->width); $this->y_max = max($this->y_max, $table->y + $table->height); $this->x_min = min($this->x_min, $table->x); $this->y_min = min($this->y_min, $table->y); } function PMA_RT_drawTables($show_info) { foreach ($this->tables as $table) { $table->PMA_RT_Table_draw($show_info, $this->ff); } } function PMA_RT_drawRelations($change_color) { $i = 0; foreach ($this->relations as $relation) { $relation->PMA_RT_Relation_draw($change_color, $i); $i++; } } function PMA_RT_strokeGrid() { global $pdf; $pdf->SetMargins(0, 0); $pdf->SetDrawColor(200, 200, 200); for ($l = 0; $l < 21; $l++) { // horizontal line $pdf->line(0, $l * 10, 297, $l * 10); $pdf->SetXY(0, $l * 10); $pdf->cell(5, 5, round(($l * 10 - $this->t_marg) * $this->scale + $this->y_min)); } for ($j = 0; $j < 30 ;$j++) { // vertical line $pdf->line($j * 10, 0, $j * 10, 210); $pdf->SetXY($j * 10, 0); $pdf->Cell(5, 7, round(($j * 10 - $this->l_marg) * $this->scale + $this->x_min)); } } function PMA_RT_showRt() { global $pdf, $db, $pdf_page_number; $pdf->SetDisplayMode('fullpage'); $pdf->Output($db . '_' . $pdf_page_number . '.pdf', TRUE); } } // end class "PMA_RT" class PMA_RT_Relation { var $x_src, $y_src; var $src_dir ; var $dest_dir; var $x_dest, $y_dest; var $w_tick = 5; function PMA_RT_Relation($master_table, $master_field, $foreign_table, $foreign_field) { $src_pos = $this->PMA_RT_Relation_getXy($master_table , $master_field); $dest_pos = $this->PMA_RT_Relation_getXy($foreign_table, $foreign_field); $src_left = $src_pos[0] - $this->w_tick; $src_right = $src_pos[1] + $this->w_tick; $dest_left = $dest_pos[0] - $this->w_tick; $dest_right = $dest_pos[1] + $this->w_tick; $d1 = abs($src_left - $dest_left); $d2 = abs($src_right - $dest_left); $d3 = abs($src_left - $dest_right); $d4 = abs($src_right - $dest_right); $d = min($d1, $d2, $d3, $d4); if ($d == $d1) { $this->x_src = $src_pos[0]; $this->src_dir = -1; $this->x_dest = $dest_pos[0]; $this->dest_dir = -1; } else if ($d == $d2) { $this->x_src = $src_pos[1]; $this->src_dir = 1; $this->x_dest = $dest_pos[0]; $this->dest_dir = -1; } else if ($d == $d3) { $this->x_src = $src_pos[0]; $this->src_dir = -1; $this->x_dest = $dest_pos[1]; $this->dest_dir = 1; } else { $this->x_src = $src_pos[1]; $this->src_dir = 1; $this->x_dest = $dest_pos[1]; $this->dest_dir = 1; } $this->y_src = $src_pos[2]; $this->y_dest = $dest_pos[2]; } function PMA_RT_Relation_getXy($table, $column) { $pos = array_search($column, $table->fields); //x_left, x_right ,y return array($table->x, $table->x + $table->width, $table->y + ($pos + 1.5) * $table->height_cell); } function PMA_RT_Relation_draw($change_color, $i) { global $pdf; if ($change_color){ $d = $i % 6; $j = ($i - $d) / 6; $j = $j % 4; $j++; $case = array( array(1, 0, 0), array(0, 1, 0), array(0, 0, 1), array(1, 1, 0), array(1, 0, 1), array(0, 1, 1) ); list ($a, $b, $c) = $case[$d]; $e = (1 - ($j - 1) / 6); $pdf->SetDrawColor($a * 255 * $e, $b * 255 * $e, $c * 255 * $e); } else { $pdf->SetDrawColor(0); } $pdf->PMA_PDF_setLineWidthScale(0.2); $pdf->PMA_PDF_lineScale($this->x_src, $this->y_src, $this->x_src + $this->src_dir * $this->w_tick, $this->y_src); $pdf->PMA_PDF_lineScale($this->x_dest + $this->dest_dir * $this->w_tick, $this->y_dest, $this->x_dest, $this->y_dest); $pdf->PMA_PDF_setLineWidthScale(0.1); $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); //arrow $root2 = 2 * sqrt(2); $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); $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); $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); $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); $pdf->SetDrawColor(0); } } // end class "PMA_RT_Relation" class PMA_RT_Table { var $nb_fiels; var $table_name; var $width = 0; var $height; var $fields = array(); var $height_cell = 6; var $x, $y; function PMA_RT_Table($table_name, $ff) { global $pdf; $this->table_name = $table_name; $sql = 'DESCRIBE ' . PMA_backquote($table_name); $result = mysql_query($sql); if (!$result || !mysql_num_rows($result)) { $pdf->PMA_PDF_die(sprintf($GLOBALS['strInvalidTblName'], $table_name)); } // load fields while ($row = mysql_fetch_array($result)) { $this->fields[] = $row[0]; } //height and width $this->PMA_RT_Table_setWidth($ff); $this->PMA_RT_Table_setHeight(); //x and y $sql = 'SELECT x, y FROM ' . PMA_backquote($GLOBALS['cfg']['Server']['table_info']) . ' WHERE table_name = \'' . PMA_sqlAddslashes($table_name) . '\''; $result = mysql_query($sql); if (!$result || !mysql_num_rows($result)) { $pdf->PMA_PDF_die(sprintf($GLOBALS['strConfigureTableCoord'], $table_name)); } list($this->x, $this->y) = mysql_fetch_array($result); } function PMA_RT_Table_setWidth($ff) { global $pdf; foreach ($this->fields as $field ) { $this->width = max($this->width, $pdf->GetStringWidth($field)); } $this->width += $pdf->GetStringWidth(' '); $pdf->SetFont($ff, 'B'); $this->width = max($this->width, $pdf->GetStringWidth(' ' . $this->table_name)); $pdf->SetFont($ff, ''); } function PMA_RT_Table_setHeight() { $this->height = (sizeof($this->fields) + 1) * $this->height_cell; } function PMA_RT_Table_draw($show_info, $ff) { global $pdf; $pdf->PMA_PDF_setXyScale($this->x, $this->y); $pdf->SetFont($ff, 'B'); $pdf->SetTextColor(200); $pdf->SetFillColor(0, 0, 128); if ($show_info){ $pdf->PMA_PDF_cellScale($this->width, $this->height_cell, round($this->width) . 'x' . round($this->height) . ' ' . $this->table_name , 1, 1, 'C', 1); } else { $pdf->PMA_PDF_cellScale($this->width, $this->height_cell, $this->table_name, 1, 1, 'C', 1); } $pdf->PMA_PDF_setXScale($this->x); $pdf->SetFont($ff, ''); $pdf->SetTextColor(0); $pdf->SetFillColor(255); foreach ($this->fields as $field) { $pdf->PMA_PDF_cellScale($this->width, $this->height_cell, ' ' . $field, 1, 1, 'L', 1); $pdf->PMA_PDF_setXScale($this->x); } if ($pdf->PageNo() > 1) { $pdf->PMA_PDF_die($GLOBALS['strScaleFactorSmall']); } } } // end class "PMA_RT_Table" /** * Main logic */ if (!isset($pdf_page_number)) { $pdf_page_number = 1; } $show_grid = (isset($show_grid) && $show_grid == 'on') ? 1 : 0; $show_color = (isset($show_color) && $show_color == 'on') ? 1 : 0; $show_table_dimension = (isset($show_table_dimension) && $show_table_dimension == 'on') ? 1 : 0; mysql_select_db($db); $rt = new PMA_RT('auto', $pdf_page_number, $show_table_dimension, $show_color, $show_grid); ?>