2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * Set of functions used to build CSV dumps of tables
6 * @package phpMyAdmin-Export-HTMLWord
9 if (! defined('PHPMYADMIN')) {
16 if (isset($plugin_list)) {
17 $plugin_list['htmlword'] = array(
18 'text' => 'strHTMLWord',
20 'mime_type' => 'application/vnd.ms-word',
23 array('type' => 'bool', 'name' => 'structure', 'text' => 'strStructure', 'force' => 'data'),
24 array('type' => 'bgroup', 'name' => 'data', 'text' => 'strData', 'force' => 'structure'),
25 array('type' => 'text', 'name' => 'null', 'text' => 'strReplaceNULLBy'),
26 array('type' => 'bool', 'name' => 'columns', 'text' => 'strPutColNames'),
27 array('type' => 'egroup'),
29 'options_text' => 'strOptions',
36 * @param string Text of comment
38 * @return bool Whether it suceeded
40 function PMA_exportComment($text) {
45 * Outputs export footer
47 * @return bool Whether it suceeded
51 function PMA_exportFooter() {
52 return PMA_exportOutputHandler('</body></html>');
56 * Outputs export header
58 * @return bool Whether it suceeded
62 function PMA_exportHeader() {
63 global $charset, $charset_of_file;
64 return PMA_exportOutputHandler('<html xmlns:o="urn:schemas-microsoft-com:office:office"
65 xmlns:x="urn:schemas-microsoft-com:office:word"
66 xmlns="http://www.w3.org/TR/REC-html40">
68 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
71 <meta http-equiv="Content-type" content="text/html;charset=' . (isset($charset_of_file) ?
$charset_of_file : $charset) .'" />
77 * Outputs database header
79 * @param string Database name
81 * @return bool Whether it suceeded
85 function PMA_exportDBHeader($db) {
86 return PMA_exportOutputHandler('<h1>' . $GLOBALS['strDatabase'] . ' ' . $db . '</h1>');
90 * Outputs database footer
92 * @param string Database name
94 * @return bool Whether it suceeded
98 function PMA_exportDBFooter($db) {
103 * Outputs create database database
105 * @param string Database name
107 * @return bool Whether it suceeded
111 function PMA_exportDBCreate($db) {
116 * Outputs the content of a table in CSV format
118 * @param string the database name
119 * @param string the table name
120 * @param string the end of line sequence
121 * @param string the url to go back in case of error
122 * @param string SQL query for obtaining data
124 * @return bool Whether it suceeded
128 function PMA_exportData($db, $table, $crlf, $error_url, $sql_query)
132 if (!PMA_exportOutputHandler('<h2>' . $GLOBALS['strDumpingData'] . ' ' . $table . '</h2>')) {
135 if (!PMA_exportOutputHandler('<table class="width100" cellspacing="1">')) {
139 // Gets the data from the database
140 $result = PMA_DBI_query($sql_query, null, PMA_DBI_QUERY_UNBUFFERED
);
141 $fields_cnt = PMA_DBI_num_fields($result);
143 // If required, get fields name at the first line
144 if (isset($GLOBALS['htmlword_columns'])) {
145 $schema_insert = '<tr class="print-category">';
146 for ($i = 0; $i < $fields_cnt; $i++
) {
147 $schema_insert .= '<td class="print"><b>' . htmlspecialchars(stripslashes(PMA_DBI_field_name($result, $i))) . '</b></td>';
149 $schema_insert .= '</tr>';
150 if (!PMA_exportOutputHandler($schema_insert)) {
156 while ($row = PMA_DBI_fetch_row($result)) {
157 $schema_insert = '<tr class="print-category">';
158 for ($j = 0; $j < $fields_cnt; $j++
) {
159 if (!isset($row[$j]) ||
is_null($row[$j])) {
160 $value = $GLOBALS[$what . '_null'];
161 } elseif ($row[$j] == '0' ||
$row[$j] != '') {
166 $schema_insert .= '<td class="print">' . htmlspecialchars($value) . '</td>';
168 $schema_insert .= '</tr>';
169 if (!PMA_exportOutputHandler($schema_insert)) {
173 PMA_DBI_free_result($result);
174 if (!PMA_exportOutputHandler('</table>')) {
181 function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = false, $do_comments = false, $do_mime = false, $dates = false, $dummy)
185 if (!PMA_exportOutputHandler('<h2>' . $GLOBALS['strTableStructure'] . ' ' .$table . '</h2>')) {
190 * Get the unique keys in the table
192 $keys_query = 'SHOW KEYS FROM ' . PMA_backquote($table) . ' FROM '. PMA_backquote($db);
193 $keys_result = PMA_DBI_query($keys_query);
194 $unique_keys = array();
195 while ($key = PMA_DBI_fetch_assoc($keys_result)) {
196 if ($key['Non_unique'] == 0) {
197 $unique_keys[] = $key['Column_name'];
200 PMA_DBI_free_result($keys_result);
203 * Gets fields properties
205 PMA_DBI_select_db($db);
206 $local_query = 'SHOW FIELDS FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table);
207 $result = PMA_DBI_query($local_query);
208 $fields_cnt = PMA_DBI_num_rows($result);
210 // Check if we can use Relations (Mike Beck)
211 if ($do_relation && !empty($cfgRelation['relation'])) {
212 // Find which tables are related with the current one and write it in
214 $res_rel = PMA_getForeigners($db, $table);
216 if ($res_rel && count($res_rel) > 0) {
226 * Displays the table structure
228 if (!PMA_exportOutputHandler('<table class="width100" cellspacing="1">')) {
233 if ($do_relation && $have_rel) {
236 if ($do_comments && $cfgRelation['commwork']) {
239 if ($do_mime && $cfgRelation['mimework']) {
243 $schema_insert = '<tr class="print-category">';
244 $schema_insert .= '<th class="print">' . htmlspecialchars($GLOBALS['strField']) . '</th>';
245 $schema_insert .= '<td class="print"><b>' . htmlspecialchars($GLOBALS['strType']) . '</b></td>';
246 $schema_insert .= '<td class="print"><b>' . htmlspecialchars($GLOBALS['strNull']) . '</b></td>';
247 $schema_insert .= '<td class="print"><b>' . htmlspecialchars($GLOBALS['strDefault']) . '</b></td>';
248 if ($do_relation && $have_rel) {
249 $schema_insert .= '<td class="print"><b>' . htmlspecialchars($GLOBALS['strLinksTo']) . '</b></td>';
252 $schema_insert .= '<td class="print"><b>' . htmlspecialchars($GLOBALS['strComments']) . '</b></td>';
253 $comments = PMA_getComments($db, $table);
255 if ($do_mime && $cfgRelation['mimework']) {
256 $schema_insert .= '<td class="print"><b>' . htmlspecialchars('MIME') . '</b></td>';
257 $mime_map = PMA_getMIME($db, $table, true);
259 $schema_insert .= '</tr>';
261 if (!PMA_exportOutputHandler($schema_insert)) {
265 while ($row = PMA_DBI_fetch_assoc($result)) {
267 $schema_insert = '<tr class="print-category">';
268 $type = $row['Type'];
269 // reformat mysql query output - staybyte - 9. June 2001
270 // loic1: set or enum types: slashes single quotes inside options
271 if (preg_match('/^(set|enum)\((.+)\)$/i', $type, $tmp)) {
272 $tmp[2] = substr(preg_replace('/([^,])\'\'/', '\\1\\\'', ',' . $tmp[2]), 1);
273 $type = $tmp[1] . '(' . str_replace(',', ', ', $tmp[2]) . ')';
280 $type_nowrap = ' nowrap="nowrap"';
281 $type = preg_replace('/BINARY/i', '', $type);
282 $type = preg_replace('/ZEROFILL/i', '', $type);
283 $type = preg_replace('/UNSIGNED/i', '', $type);
288 $binary = preg_match('/BINARY/i', $row['Type']);
289 $unsigned = preg_match('/UNSIGNED/i', $row['Type']);
290 $zerofill = preg_match('/ZEROFILL/i', $row['Type']);
292 $strAttribute = ' ';
294 $strAttribute = 'BINARY';
297 $strAttribute = 'UNSIGNED';
300 $strAttribute = 'UNSIGNED ZEROFILL';
302 if (!isset($row['Default'])) {
303 if ($row['Null'] != 'NO') {
304 $row['Default'] = 'NULL';
307 $row['Default'] = $row['Default'];
312 if (in_array($row['Field'], $unique_keys)) {
313 $fmt_pre = '<b>' . $fmt_pre;
314 $fmt_post = $fmt_post . '</b>';
316 if ($row['Key']=='PRI') {
317 $fmt_pre = '<i>' . $fmt_pre;
318 $fmt_post = $fmt_post . '</i>';
320 $schema_insert .= '<td class="print">' . $fmt_pre . htmlspecialchars($row['Field']) . $fmt_post . '</td>';
321 $schema_insert .= '<td class="print">' . htmlspecialchars($type) . '</td>';
322 $schema_insert .= '<td class="print">' . htmlspecialchars(($row['Null'] == '' ||
$row['Null'] == 'NO') ?
$GLOBALS['strNo'] : $GLOBALS['strYes']) . '</td>';
323 $schema_insert .= '<td class="print">' . htmlspecialchars(isset($row['Default']) ?
$row['Default'] : '') . '</td>';
325 $field_name = $row['Field'];
327 if ($do_relation && $have_rel) {
328 $schema_insert .= '<td class="print">' . (isset($res_rel[$field_name]) ?
htmlspecialchars($res_rel[$field_name]['foreign_table'] . ' (' . $res_rel[$field_name]['foreign_field'] . ')') : '') . '</td>';
330 if ($do_comments && $cfgRelation['commwork']) {
331 $schema_insert .= '<td class="print">' . (isset($comments[$field_name]) ?
htmlspecialchars($comments[$field_name]) : '') . '</td>';
333 if ($do_mime && $cfgRelation['mimework']) {
334 $schema_insert .= '<td class="print">' . (isset($mime_map[$field_name]) ?
htmlspecialchars(str_replace('_', '/', $mime_map[$field_name]['mimetype'])) : '') . '</td>';
337 $schema_insert .= '</tr>';
339 if (!PMA_exportOutputHandler($schema_insert)) {
343 PMA_DBI_free_result($result);
345 return PMA_exportOutputHandler('</table>');