dolibarr  13.0.2
dbtable.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2005 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
5  * Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
6  * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <https://www.gnu.org/licenses/>.
20  */
21 
27 require '../../main.inc.php';
28 
29 $langs->load("admin");
30 
31 if (!$user->admin)
33 
34 $table = GETPOST('table', 'alpha');
35 
36 
37 /*
38  * View
39  */
40 
41 llxHeader();
42 
43 
44 print load_fiche_titre($langs->trans("Table")." ".$table, '', 'title_setup');
45 
46 // Define request to get table description
47 $base = 0;
48 if (preg_match('/mysql/i', $conf->db->type))
49 {
50  $sql = "SHOW TABLE STATUS LIKE '".$db->escape($table)."'";
51  $base = 1;
52 } elseif ($conf->db->type == 'pgsql')
53 {
54  $sql = "SELECT conname,contype FROM pg_constraint";
55  $base = 2;
56 }
57 
58 if (!$base)
59 {
60  print $langs->trans("FeatureNotAvailableWithThisDatabaseDriver");
61 } else {
62  $resql = $db->query($sql);
63  if ($resql)
64  {
65  $num = $db->num_rows($resql);
66  $i = 0;
67  while ($i < $num)
68  {
69  $row = $db->fetch_row($resql);
70  $i++;
71  }
72  }
73 
74  if ($base == 1) // mysql
75  {
76  $link = array();
77  $cons = explode(";", $row[14]);
78  if (!empty($cons))
79  {
80  foreach ($cons as $cc)
81  {
82  $cx = preg_replace("/\)\sREFER/", "", $cc);
83  $cx = preg_replace("/\(`/", "", $cx);
84  $cx = preg_replace("/`\)/", "", $cx);
85  $cx = preg_replace("/`\s/", "", $cx);
86 
87  $val = explode("`", $cx);
88 
89  $link[trim($val[0])][0] = (isset($val[1]) ? $val[1] : '');
90  $link[trim($val[0])][1] = (isset($val[2]) ? $val[2] : '');
91  }
92  }
93 
94  // var_dump($link);
95 
96  print '<table class="noborder">';
97  print '<tr class="liste_titre">';
98  print '<td>'.$langs->trans("Fields").'</td><td>'.$langs->trans("Type").'</td><td>'.$langs->trans("Index").'</td>';
99  print '<td></td>';
100  print '<td></td>';
101  print '<td></td>';
102  print '<td></td>';
103  print '<td>'.$langs->trans("FieldsLinked").'</td>';
104  print '</tr>';
105 
106  //$sql = "DESCRIBE ".$table;
107  $sql = "SHOW FULL COLUMNS IN ".$db->escape($table);
108 
109  $resql = $db->query($sql);
110  if ($resql)
111  {
112  $num = $db->num_rows($resql);
113  $i = 0;
114  while ($i < $num)
115  {
116  $row = $db->fetch_row($resql);
117  print '<tr class="oddeven">';
118  print "<td>".$row[0]."</td>";
119  print "<td>".$row[1]."</td>";
120  print "<td>".$row[3]."</td>";
121  print "<td>".(empty($row[4]) ? '' : $row[4])."</td>";
122  print "<td>".(empty($row[5]) ? '' : $row[5])."</td>";
123  print "<td>".(empty($row[6]) ? '' : $row[6])."</td>";
124  print "<td>".(empty($row[7]) ? '' : $row[7])."</td>";
125 
126  print "<td>".(isset($link[$row[0]][0]) ? $link[$row[0]][0] : '').".";
127  print (isset($link[$row[0]][1]) ? $link[$row[0]][1] : '')."</td>";
128 
129  print '<!-- ALTER ALTER TABLE '.$table.' MODIFY '.$row[0].' '.$row[1].' COLLATE utf8_unicode_ci; -->';
130  print '</tr>';
131  $i++;
132  }
133  }
134  print '</table>';
135  }
136 }
137 
138 // End of page
139 llxFooter();
140 $db->close();
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
llxHeader()
Empty header.
Definition: wrapper.php:45
load_fiche_titre($titre, $morehtmlright= '', $picto= 'generic', $pictoisfullpath=0, $id= '', $morecssontable= '', $morehtmlcenter= '')
Load a title with picto.
accessforbidden($message= '', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program Calling this function terminate execution ...
print
Draft customers invoices.
Definition: index.php:89
if(!empty($conf->facture->enabled)&&$user->rights->facture->lire) if((!empty($conf->fournisseur->enabled)&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)||!empty($conf->supplier_invoice->enabled))&&$user->rights->fournisseur->facture->lire) if(!empty($conf->don->enabled)&&$user->rights->don->lire) if(!empty($conf->tax->enabled)&&$user->rights->tax->charges->lire) if(!empty($conf->facture->enabled)&&!empty($conf->commande->enabled)&&$user->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) if(!empty($conf->facture->enabled)&&$user->rights->facture->lire) if((!empty($conf->fournisseur->enabled)&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)||!empty($conf->supplier_invoice->enabled))&&$user->rights->fournisseur->facture->lire) $resql
Social contributions to pay.
Definition: index.php:1232
llxFooter()
Empty footer.
Definition: wrapper.php:59