changing widths of columns in tbl_printview
correcting spellingerror in german translation using translated string for pagenumber in Table of Contents for Datadict pdf
This commit is contained in:
@@ -177,7 +177,7 @@ while ($row = mysql_fetch_array($rowset)) {
|
|||||||
echo ' <th width="50">' . $strLinksTo . '</th>' . "\n";
|
echo ' <th width="50">' . $strLinksTo . '</th>' . "\n";
|
||||||
}
|
}
|
||||||
if ($cfgRelation['commwork']) {
|
if ($cfgRelation['commwork']) {
|
||||||
echo ' <th width="400">' . $strComments . '</th>' . "\n";
|
echo ' <th>' . $strComments . '</th>' . "\n";
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -254,7 +254,7 @@ while ($row = mysql_fetch_array($rowset)) {
|
|||||||
echo ' </td>' . "\n";
|
echo ' </td>' . "\n";
|
||||||
}
|
}
|
||||||
if ($cfgRelation['commwork']) {
|
if ($cfgRelation['commwork']) {
|
||||||
echo ' <td width="400" class="print">';
|
echo ' <td class="print">';
|
||||||
if (isset($comments[$field_name])) {
|
if (isset($comments[$field_name])) {
|
||||||
echo htmlspecialchars($comments[$field_name]);
|
echo htmlspecialchars($comments[$field_name]);
|
||||||
}
|
}
|
||||||
|
@@ -308,7 +308,7 @@ $strQueryOnDb = ' SQL-Befehl in der Datenbank <b>%s</b>:';
|
|||||||
|
|
||||||
$strRecords = 'Eintr<74>ge';
|
$strRecords = 'Eintr<74>ge';
|
||||||
$strReferentialIntegrity = 'Pr<50>fe referentielle Integrit<69>t:';
|
$strReferentialIntegrity = 'Pr<50>fe referentielle Integrit<69>t:';
|
||||||
$strRelationalSchema = 'Bezeihnungsschema';
|
$strRelationalSchema = 'Beziehungsschema';
|
||||||
$strRelationNotWorking = 'Die zus<75>tzlichen Funktionen f<>r verkn<6B>pfte Tabellen wurden automatisch deaktiviert. Klicken Sie %shier%s um herauszufinden warum.';
|
$strRelationNotWorking = 'Die zus<75>tzlichen Funktionen f<>r verkn<6B>pfte Tabellen wurden automatisch deaktiviert. Klicken Sie %shier%s um herauszufinden warum.';
|
||||||
$strRelationView = 'Beziehungs<67>bersicht';
|
$strRelationView = 'Beziehungs<67>bersicht';
|
||||||
$strReloadFailed = 'MySQL Neuladen fehlgeschlagen.';
|
$strReloadFailed = 'MySQL Neuladen fehlgeschlagen.';
|
||||||
|
@@ -309,7 +309,7 @@ $strQueryOnDb = ' SQL-Befehl in der Datenbank <b>%s</b>:';
|
|||||||
|
|
||||||
$strRecords = 'Einträge';
|
$strRecords = 'Einträge';
|
||||||
$strReferentialIntegrity = 'Prüfe referentielle Integrität:';
|
$strReferentialIntegrity = 'Prüfe referentielle Integrität:';
|
||||||
$strRelationalSchema = 'Bezeihnungsschema';
|
$strRelationalSchema = 'Beziehungsschema';
|
||||||
$strRelationNotWorking = 'Die zusätzlichen Funktionen für verknüpfte Tabellen wurden automatisch deaktiviert. Klicken Sie %shier%s um herauszufinden warum.';
|
$strRelationNotWorking = 'Die zusätzlichen Funktionen für verknüpfte Tabellen wurden automatisch deaktiviert. Klicken Sie %shier%s um herauszufinden warum.';
|
||||||
$strRelationView = 'Beziehungsübersicht';
|
$strRelationView = 'Beziehungsübersicht';
|
||||||
$strReloadFailed = 'MySQL Neuladen fehlgeschlagen.';
|
$strReloadFailed = 'MySQL Neuladen fehlgeschlagen.';
|
||||||
|
@@ -1201,7 +1201,7 @@ function PMA_RT_DOC($alltables ){
|
|||||||
$pdf->PMA_links['doc'][$table]['-'] = $pdf->AddLink();
|
$pdf->PMA_links['doc'][$table]['-'] = $pdf->AddLink();
|
||||||
$pdf->SetX(10);
|
$pdf->SetX(10);
|
||||||
//$pdf->Ln(1);
|
//$pdf->Ln(1);
|
||||||
$pdf->Cell(0,6,'page {'.sprintf("%02d", $i).'}',0,0,'R',0,$pdf->PMA_links['doc'][$table]['-']);
|
$pdf->Cell(0,6,$GLOBALS['strPageNumber'] . ' {'.sprintf("%02d", $i).'}',0,0,'R',0,$pdf->PMA_links['doc'][$table]['-']);
|
||||||
$pdf->SetX(10);
|
$pdf->SetX(10);
|
||||||
$pdf->Cell(0,6,$i.' '. $table,0,1,'L',0,$pdf->PMA_links['doc'][$table]['-']);
|
$pdf->Cell(0,6,$i.' '. $table,0,1,'L',0,$pdf->PMA_links['doc'][$table]['-']);
|
||||||
|
|
||||||
@@ -1218,7 +1218,7 @@ function PMA_RT_DOC($alltables ){
|
|||||||
}
|
}
|
||||||
$pdf->PMA_links['RT']['-'] =$pdf->AddLink();
|
$pdf->PMA_links['RT']['-'] =$pdf->AddLink();
|
||||||
$pdf->SetX(10);
|
$pdf->SetX(10);
|
||||||
$pdf->Cell(0,6,'page {00}',0,0,'R',0,$pdf->PMA_links['doc'][$table]['-']);
|
$pdf->Cell(0,6,$GLOBALS['strPageNumber'] . ' {00}',0,0,'R',0,$pdf->PMA_links['doc'][$table]['-']);
|
||||||
$pdf->SetX(10);
|
$pdf->SetX(10);
|
||||||
$pdf->Cell(0,6,$i.' '. $GLOBALS['strRelationalSchema'],0,1,'L',0,$pdf->PMA_links['RT']['-']);
|
$pdf->Cell(0,6,$i.' '. $GLOBALS['strRelationalSchema'],0,1,'L',0,$pdf->PMA_links['RT']['-']);
|
||||||
$z = 0;
|
$z = 0;
|
||||||
|
@@ -181,21 +181,21 @@ while (list($key, $table) = each($the_tables)) {
|
|||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- TABLE INFORMATIONS -->
|
<!-- TABLE INFORMATIONS -->
|
||||||
<table width="100%" bordercolorlight="black" border="border" style="border-collapse: collapse; background-color: white">
|
<table width="95%" bordercolorlight="black" border="border" style="border-collapse: collapse; background-color: white">
|
||||||
<tr>
|
<tr>
|
||||||
<th width="50"><?php echo $strField; ?></th>
|
<th width="50"><?php echo $strField; ?></th>
|
||||||
<th width="50"><?php echo $strType; ?></th>
|
<th width="80"><?php echo $strType; ?></th>
|
||||||
<!--<th width="50"><?php echo $strAttr; ?></th>-->
|
<!--<th width="50"><?php echo $strAttr; ?></th>-->
|
||||||
<th width="50"><?php echo $strNull; ?></th>
|
<th width="40"><?php echo $strNull; ?></th>
|
||||||
<th width="50"><?php echo $strDefault; ?></th>
|
<th width="70"><?php echo $strDefault; ?></th>
|
||||||
<!--<th width="50"><?php echo $strExtra; ?></th>-->
|
<!--<th width="50"><?php echo $strExtra; ?></th>-->
|
||||||
<?php
|
<?php
|
||||||
echo "\n";
|
echo "\n";
|
||||||
if ($have_rel) {
|
if ($have_rel) {
|
||||||
echo ' <th width="50">' . $strLinksTo . '</th>' . "\n";
|
echo ' <th>' . $strLinksTo . '</th>' . "\n";
|
||||||
}
|
}
|
||||||
if ($cfgRelation['commwork']) {
|
if ($cfgRelation['commwork']) {
|
||||||
echo ' <th width="400">' . $strComments . '</th>' . "\n";
|
echo ' <th>' . $strComments . '</th>' . "\n";
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -256,15 +256,15 @@ while (list($key, $table) = each($the_tables)) {
|
|||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</td>
|
</td>
|
||||||
<td width="50" class="print"<?php echo $type_nowrap; ?>><?php echo $type; ?><bdo dir="ltr"></bdo></td>
|
<td width="80" class="print"<?php echo $type_nowrap; ?>><?php echo $type; ?><bdo dir="ltr"></bdo></td>
|
||||||
<!--<td width="50" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap"><?php echo $strAttribute; ?></td>-->
|
<!--<td width="50" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap"><?php echo $strAttribute; ?></td>-->
|
||||||
<td width="50" class="print"><?php echo (($row['Null'] == '') ? $strNo : $strYes); ?> </td>
|
<td width="40" class="print"><?php echo (($row['Null'] == '') ? $strNo : $strYes); ?> </td>
|
||||||
<td width="50" class="print" nowrap="nowrap"><?php if (isset($row['Default'])) echo $row['Default']; ?> </td>
|
<td width="70" class="print" nowrap="nowrap"><?php if (isset($row['Default'])) echo $row['Default']; ?> </td>
|
||||||
<!--<td width="50" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap"><?php echo $row['Extra']; ?> </td>-->
|
<!--<td width="50" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap"><?php echo $row['Extra']; ?> </td>-->
|
||||||
<?php
|
<?php
|
||||||
echo "\n";
|
echo "\n";
|
||||||
if ($have_rel) {
|
if ($have_rel) {
|
||||||
echo ' <td width="50" class="print">';
|
echo ' <td class="print">';
|
||||||
if (isset($res_rel[$field_name])) {
|
if (isset($res_rel[$field_name])) {
|
||||||
echo htmlspecialchars($res_rel[$field_name]['foreign_table'] . ' -> ' . $res_rel[$field_name]['foreign_field'] );
|
echo htmlspecialchars($res_rel[$field_name]['foreign_table'] . ' -> ' . $res_rel[$field_name]['foreign_field'] );
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user