2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * Set of functions used with the relation and pdf feature
8 if (! defined('PHPMYADMIN')) {
13 * Executes a query as controluser if possible, otherwise as normal user
15 * @param string the query to execute
16 * @param boolean whether to display SQL error messages or not
18 * @return integer the result set, or false if no result set
23 function PMA_query_as_controluser($sql, $show_error = true, $options = 0)
25 // Avoid caching of the number of rows affected; for example, this function
26 // is called for tracking purposes but we want to display the correct number
27 // of rows affected by the original query, not by the query generated for
29 $cache_affected_rows = false;
32 $result = PMA_DBI_query($sql, $GLOBALS['controllink'], $options, $cache_affected_rows);
34 $result = @PMA_DBI_try_query
($sql, $GLOBALS['controllink'], $options, $cache_affected_rows);
35 } // end if... else...
42 } // end of the "PMA_query_as_controluser()" function
45 * @param bool $verbose whether to print diagnostic info
46 * @return array $cfgRelation
48 function PMA_getRelationsParam($verbose = false)
50 if (empty($_SESSION['relation'][$GLOBALS['server']])) {
51 $_SESSION['relation'][$GLOBALS['server']] = PMA__getRelationsParam();
54 // just for BC but needs to be before PMA_printRelationsParamDiagnostic()
56 $GLOBALS['cfgRelation'] = $_SESSION['relation'][$GLOBALS['server']];
59 PMA_printRelationsParamDiagnostic($_SESSION['relation'][$GLOBALS['server']]);
62 return $_SESSION['relation'][$GLOBALS['server']];
66 * prints out diagnostic info for pma relation feature
68 * @param array $cfgRelation
70 function PMA_printRelationsParamDiagnostic($cfgRelation)
72 $messages['error'] = '<font color="red"><strong>' . __('not OK')
73 . '</strong></font> [ <a href="Documentation.html#%s" target="documentation">'
74 . __('Documentation') . '</a> ]';
76 $messages['ok'] = '<font color="green"><strong>' . __('OK') . '</strong></font>';
77 $messages['enabled'] = '<font color="green">' . __('Enabled') . '</font>';
78 $messages['disabled'] = '<font color="red">' . __('Disabled') . '</font>';
80 if (false === $GLOBALS['cfg']['Server']['pmadb']) {
81 echo 'PMA Database ... '
82 . sprintf($messages['error'], 'pmadb')
84 . __('General relation features')
85 . ' <font color="green">' . __('Disabled')
90 echo '<table>' . "\n";
92 PMA_printDiagMessageForParameter('pmadb', $GLOBALS['cfg']['Server']['pmadb'], $messages, 'pmadb');
94 PMA_printDiagMessageForParameter('relation', isset($cfgRelation['relation']), $messages, 'relation');
96 PMA_printDiagMessageForFeature(__('General relation features'), 'relwork', $messages);
98 PMA_printDiagMessageForParameter('table_info', isset($cfgRelation['table_info']), $messages, 'table_info');
100 PMA_printDiagMessageForFeature(__('Display Features'), 'displaywork', $messages);
102 PMA_printDiagMessageForParameter('table_coords', isset($cfgRelation['table_coords']), $messages, 'table_coords');
104 PMA_printDiagMessageForParameter('pdf_pages', isset($cfgRelation['pdf_pages']), $messages, 'table_coords');
106 PMA_printDiagMessageForFeature(__('Creation of PDFs'), 'pdfwork', $messages);
108 PMA_printDiagMessageForParameter('column_info', isset($cfgRelation['column_info']), $messages, 'col_com');
110 PMA_printDiagMessageForFeature(__('Displaying Column Comments'), 'commwork', $messages, false);
112 PMA_printDiagMessageForFeature(__('Browser transformation'), 'mimework', $messages);
114 if ($cfgRelation['commwork'] && ! $cfgRelation['mimework']) {
115 echo '<tr><td colspan=2 align="left">' . __('Please see the documentation on how to update your column_comments table') . '</td></tr>' . "\n";
118 PMA_printDiagMessageForParameter('bookmarktable', isset($cfgRelation['bookmark']), $messages, 'bookmark');
120 PMA_printDiagMessageForFeature(__('Bookmarked SQL query'), 'bookmarkwork', $messages);
122 PMA_printDiagMessageForParameter('history', isset($cfgRelation['history']), $messages, 'history');
124 PMA_printDiagMessageForFeature(__('SQL history'), 'historywork', $messages);
126 PMA_printDiagMessageForParameter('designer_coords', isset($cfgRelation['designer_coords']), $messages, 'designer_coords');
128 PMA_printDiagMessageForFeature(__('Designer'), 'designerwork', $messages);
130 PMA_printDiagMessageForParameter('recent', isset($cfgRelation['recent']), $messages, 'recent');
132 PMA_printDiagMessageForFeature(__('Persistent recently used tables'), 'recentwork', $messages);
134 PMA_printDiagMessageForParameter('table_uiprefs', isset($cfgRelation['table_uiprefs']), $messages, 'table_uiprefs');
136 PMA_printDiagMessageForFeature(__('Persistent tables\' UI preferences'), 'uiprefswork', $messages);
138 PMA_printDiagMessageForParameter('tracking', isset($cfgRelation['tracking']), $messages, 'tracking');
140 PMA_printDiagMessageForFeature(__('Tracking'), 'trackingwork', $messages);
142 PMA_printDiagMessageForParameter('userconfig', isset($cfgRelation['userconfig']), $messages, 'userconfig');
144 PMA_printDiagMessageForFeature(__('User preferences'), 'userconfigwork', $messages);
146 echo '</table>' . "\n";
148 echo '<p>' . __('Quick steps to setup advanced features:') . '</p>';
150 echo '<li>' . __('Create the needed tables with the <code>script/create_tables.sql</code>.') . ' ' . PMA_showDocu('linked-tables') . '</li>';
151 echo '<li>' . __('Create a pma user and give access to these tables.') . ' ' . PMA_showDocu('pmausr') . '</li>';
152 echo '<li>' . __('Enable advanced features in configuration file (<code>config.inc.php</code>), for example by starting from <code>config.sample.inc.php</code>.') . ' ' . PMA_showDocu('quick_install') . '</li>';
153 echo '<li>' . __('Re-login to phpMyAdmin to load the updated configuration file.') . '</li>';
158 * prints out one diagnostic message for a feature
160 * @param string feature name in a message string
161 * @param string the $GLOBALS['cfgRelation'] parameter to check
162 * @param array utility messages
163 * @param boolean whether to skip a line after the message
165 function PMA_printDiagMessageForFeature($feature_name, $relation_parameter, $messages, $skip_line=true)
167 echo ' <tr><td colspan=2 align="right">' . $feature_name . ': '
168 . ($GLOBALS['cfgRelation'][$relation_parameter] ?
$messages['enabled'] : $messages['disabled'])
169 . '</td></tr>' . "\n";
171 echo ' <tr><td> </td></tr>' . "\n";
176 * prints out one diagnostic message for a configuration parameter
178 * @param string config parameter name to display
179 * @param boolean whether this parameter is set
180 * @param array utility messages
181 * @param string anchor in Documentation.html
183 function PMA_printDiagMessageForParameter($parameter, $relation_parameter_set, $messages, $doc_anchor)
185 echo ' <tr><th align="left">';
186 echo '$cfg[\'Servers\'][$i][\'' . $parameter . '\'] ... </th><td align="right">';
187 echo ($relation_parameter_set ?
$messages['ok'] : sprintf($messages['error'], $doc_anchor)) . '</td></tr>' . "\n";
192 * Defines the relation parameters for the current user
193 * just a copy of the functions used for relations ;-)
194 * but added some stuff to check what will work
197 * @return array the relation parameters for the current user
199 function PMA__getRelationsParam()
201 $cfgRelation = array();
202 $cfgRelation['relwork'] = false;
203 $cfgRelation['displaywork'] = false;
204 $cfgRelation['bookmarkwork']= false;
205 $cfgRelation['pdfwork'] = false;
206 $cfgRelation['commwork'] = false;
207 $cfgRelation['mimework'] = false;
208 $cfgRelation['historywork'] = false;
209 $cfgRelation['recentwork'] = false;
210 $cfgRelation['uiprefswork'] = false;
211 $cfgRelation['trackingwork'] = false;
212 $cfgRelation['designerwork'] = false;
213 $cfgRelation['userconfigwork'] = false;
214 $cfgRelation['allworks'] = false;
215 $cfgRelation['user'] = null;
216 $cfgRelation['db'] = null;
218 if ($GLOBALS['server'] == 0 ||
empty($GLOBALS['cfg']['Server']['pmadb'])
219 ||
! PMA_DBI_select_db($GLOBALS['cfg']['Server']['pmadb'], $GLOBALS['controllink'])) {
220 // No server selected -> no bookmark table
221 // we return the array with the falses in it,
222 // to avoid some 'Unitialized string offset' errors later
223 $GLOBALS['cfg']['Server']['pmadb'] = false;
228 $cfgRelation['user'] = $GLOBALS['cfg']['Server']['user'];
229 $cfgRelation['db'] = $GLOBALS['cfg']['Server']['pmadb'];
231 // Now I just check if all tables that i need are present so I can for
232 // example enable relations but not pdf...
233 // I was thinking of checking if they have all required columns but I
234 // fear it might be too slow
236 $tab_query = 'SHOW TABLES FROM ' . PMA_backquote($GLOBALS['cfg']['Server']['pmadb']);
237 $tab_rs = PMA_query_as_controluser($tab_query, false, PMA_DBI_QUERY_STORE
);
240 // query failed ... ?
241 //$GLOBALS['cfg']['Server']['pmadb'] = false;
245 while ($curr_table = @PMA_DBI_fetch_row
($tab_rs)) {
246 if ($curr_table[0] == $GLOBALS['cfg']['Server']['bookmarktable']) {
247 $cfgRelation['bookmark'] = $curr_table[0];
248 } elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['relation']) {
249 $cfgRelation['relation'] = $curr_table[0];
250 } elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['table_info']) {
251 $cfgRelation['table_info'] = $curr_table[0];
252 } elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['table_coords']) {
253 $cfgRelation['table_coords'] = $curr_table[0];
254 } elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['designer_coords']) {
255 $cfgRelation['designer_coords'] = $curr_table[0];
256 } elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['column_info']) {
257 $cfgRelation['column_info'] = $curr_table[0];
258 } elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['pdf_pages']) {
259 $cfgRelation['pdf_pages'] = $curr_table[0];
260 } elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['history']) {
261 $cfgRelation['history'] = $curr_table[0];
262 } elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['recent']) {
263 $cfgRelation['recent'] = $curr_table[0];
264 } elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['table_uiprefs']) {
265 $cfgRelation['table_uiprefs'] = $curr_table[0];
266 } elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['tracking']) {
267 $cfgRelation['tracking'] = $curr_table[0];
268 } elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['userconfig']) {
269 $cfgRelation['userconfig'] = $curr_table[0];
272 PMA_DBI_free_result($tab_rs);
274 if (isset($cfgRelation['relation'])) {
275 $cfgRelation['relwork'] = true;
276 if (isset($cfgRelation['table_info'])) {
277 $cfgRelation['displaywork'] = true;
281 if (isset($cfgRelation['table_coords']) && isset($cfgRelation['pdf_pages'])) {
282 $cfgRelation['pdfwork'] = true;
285 if (isset($cfgRelation['column_info'])) {
286 $cfgRelation['commwork'] = true;
288 if ($GLOBALS['cfg']['Server']['verbose_check']) {
289 $mime_query = PMA_DBI_get_columns_sql($cfgRelation['db'], $cfgRelation['column_info']);
290 $mime_rs = PMA_query_as_controluser($mime_query, false);
292 $mime_field_mimetype = false;
293 $mime_field_transformation = false;
294 $mime_field_transformation_options = false;
295 while ($curr_mime_field = @PMA_DBI_fetch_row
($mime_rs)) {
296 if ($curr_mime_field[0] == 'mimetype') {
297 $mime_field_mimetype = true;
298 } elseif ($curr_mime_field[0] == 'transformation') {
299 $mime_field_transformation = true;
300 } elseif ($curr_mime_field[0] == 'transformation_options') {
301 $mime_field_transformation_options = true;
304 PMA_DBI_free_result($mime_rs);
306 if ($mime_field_mimetype
307 && $mime_field_transformation
308 && $mime_field_transformation_options) {
309 $cfgRelation['mimework'] = true;
312 $cfgRelation['mimework'] = true;
316 if (isset($cfgRelation['history'])) {
317 $cfgRelation['historywork'] = true;
320 if (isset($cfgRelation['recent'])) {
321 $cfgRelation['recentwork'] = true;
324 if (isset($cfgRelation['table_uiprefs'])) {
325 $cfgRelation['uiprefswork'] = true;
328 if (isset($cfgRelation['tracking'])) {
329 $cfgRelation['trackingwork'] = true;
332 if (isset($cfgRelation['userconfig'])) {
333 $cfgRelation['userconfigwork'] = true;
336 // we do not absolutely need that the internal relations or the PDF
337 // schema feature be activated
338 if (isset($cfgRelation['designer_coords'])) {
339 $cfgRelation['designerwork'] = true;
342 if (isset($cfgRelation['bookmark'])) {
343 $cfgRelation['bookmarkwork'] = true;
346 if ($cfgRelation['relwork'] && $cfgRelation['displaywork']
347 && $cfgRelation['pdfwork'] && $cfgRelation['commwork']
348 && $cfgRelation['mimework'] && $cfgRelation['historywork']
349 && $cfgRelation['recentwork'] && $cfgRelation['uiprefswork']
350 && $cfgRelation['trackingwork'] && $cfgRelation['userconfigwork']
351 && $cfgRelation['bookmarkwork'] && $cfgRelation['designerwork']) {
352 $cfgRelation['allworks'] = true;
356 } // end of the 'PMA_getRelationsParam()' function
359 * Gets all Relations to foreign tables for a given table or
360 * optionally a given column in a table
363 * @param string $db the name of the db to check for
364 * @param string $table the name of the table to check for
365 * @param string $column the name of the column to check for
366 * @param string $source the source for foreign key information
367 * @return array db,table,column
369 function PMA_getForeigners($db, $table, $column = '', $source = 'both')
371 $cfgRelation = PMA_getRelationsParam();
374 if ($cfgRelation['relwork'] && ($source == 'both' ||
$source == 'internal')) {
376 SELECT `master_field`,
380 FROM ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['relation']) . '
381 WHERE `master_db` = \'' . PMA_sqlAddSlashes($db) . '\'
382 AND `master_table` = \'' . PMA_sqlAddSlashes($table) . '\' ';
383 if (strlen($column)) {
384 $rel_query .= ' AND `master_field` = \'' . PMA_sqlAddSlashes($column) . '\'';
386 $foreign = PMA_DBI_fetch_result($rel_query, 'master_field', null, $GLOBALS['controllink']);
389 if (($source == 'both' ||
$source == 'foreign') && strlen($table)) {
390 $show_create_table_query = 'SHOW CREATE TABLE '
391 . PMA_backquote($db) . '.' . PMA_backquote($table);
392 $show_create_table = PMA_DBI_fetch_value($show_create_table_query, 0, 1);
393 $analyzed_sql = PMA_SQP_analyze(PMA_SQP_parse($show_create_table));
395 foreach ($analyzed_sql[0]['foreign_keys'] as $one_key) {
396 // The analyzer may return more than one column name in the
397 // index list or the ref_index_list; if this happens,
398 // the current logic just discards the whole index; having
399 // more than one index field is currently unsupported (see FAQ 3.6)
400 if (count($one_key['index_list']) == 1) {
401 foreach ($one_key['index_list'] as $i => $field) {
402 // If a foreign key is defined in the 'internal' source (pmadb)
403 // and as a native foreign key, we won't get it twice
404 // if $source='both' because we use $field as key
406 // The parser looks for a CONSTRAINT clause just before
407 // the FOREIGN KEY clause. It finds it (as output from
408 // SHOW CREATE TABLE) in MySQL 4.0.13, but not in older
409 // versions like 3.23.58.
410 // In those cases, the FOREIGN KEY parsing will put numbers
411 // like -1, 0, 1... instead of the constraint number.
413 if (isset($one_key['constraint'])) {
414 $foreign[$field]['constraint'] = $one_key['constraint'];
417 if (isset($one_key['ref_db_name'])) {
418 $foreign[$field]['foreign_db'] = $one_key['ref_db_name'];
420 $foreign[$field]['foreign_db'] = $db;
422 $foreign[$field]['foreign_table'] = $one_key['ref_table_name'];
423 $foreign[$field]['foreign_field'] = $one_key['ref_index_list'][$i];
424 if (isset($one_key['on_delete'])) {
425 $foreign[$field]['on_delete'] = $one_key['on_delete'];
427 if (isset($one_key['on_update'])) {
428 $foreign[$field]['on_update'] = $one_key['on_update'];
436 * Emulating relations for some information_schema and data_dictionary tables
438 $is_information_schema = strtolower($db) == 'information_schema';
439 $is_data_dictionary = PMA_DRIZZLE
&& strtolower($db) == 'data_dictionary';
440 if (($is_information_schema ||
$is_data_dictionary) && ($source == 'internal' ||
$source == 'both')) {
441 if ($is_information_schema) {
442 $relations_key = 'information_schema_relations';
443 require_once './libraries/information_schema_relations.lib.php';
445 $relations_key = 'data_dictionary_relations';
446 require_once './libraries/data_dictionary_relations.lib.php';
448 if (isset($GLOBALS[$relations_key][$table])) {
449 foreach ($GLOBALS[$relations_key][$table] as $field => $relations) {
450 if ((! strlen($column) ||
$column == $field)
451 && (! isset($foreign[$field]) ||
! strlen($foreign[$field]))) {
452 $foreign[$field] = $relations;
459 } // end of the 'PMA_getForeigners()' function
462 * Gets the display field of a table
465 * @param string $db the name of the db to check for
466 * @param string $table the name of the table to check for
467 * @return string field name
469 function PMA_getDisplayField($db, $table)
471 $cfgRelation = PMA_getRelationsParam();
474 * Try to fetch the display field from DB.
476 if ($cfgRelation['displaywork']) {
478 SELECT `display_field`
479 FROM ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['table_info']) . '
480 WHERE `db_name` = \'' . PMA_sqlAddSlashes($db) . '\'
481 AND `table_name` = \'' . PMA_sqlAddSlashes($table) . '\'';
483 $row = PMA_DBI_fetch_single_row($disp_query, 'ASSOC', $GLOBALS['controllink']);
484 if (isset($row['display_field'])) {
485 return $row['display_field'];
490 * Emulating the display field for some information_schema tables.
492 if ($db == 'information_schema') {
494 case 'CHARACTER_SETS': return 'DESCRIPTION';
495 case 'TABLES': return 'TABLE_COMMENT';
504 } // end of the 'PMA_getDisplayField()' function
507 * Gets the comments for all rows of a table or the db itself
510 * @param string the name of the db to check for
511 * @param string the name of the table to check for
512 * @return array [field_name] = comment
514 function PMA_getComments($db, $table = '')
519 // MySQL native column comments
520 $fields = PMA_DBI_get_columns($db, $table, null, true);
522 foreach ($fields as $field) {
523 if (! empty($field['Comment'])) {
524 $comments[$field['Field']] = $field['Comment'];
529 $comments[] = PMA_getDbComment($db);
533 } // end of the 'PMA_getComments()' function
536 * Gets the comment for a db
539 * @param string the name of the db to check for
540 * @return string comment
542 function PMA_getDbComment($db)
544 $cfgRelation = PMA_getRelationsParam();
547 if ($cfgRelation['commwork']) {
548 // pmadb internal db comment
551 FROM " . PMA_backquote($cfgRelation['db']) . "." . PMA_backquote($cfgRelation['column_info']) . "
552 WHERE db_name = '" . PMA_sqlAddSlashes($db) . "'
554 AND column_name = '(db_comment)'";
555 $com_rs = PMA_query_as_controluser($com_qry, true, PMA_DBI_QUERY_STORE
);
557 if ($com_rs && PMA_DBI_num_rows($com_rs) > 0) {
558 $row = PMA_DBI_fetch_assoc($com_rs);
559 $comment = $row['comment'];
561 PMA_DBI_free_result($com_rs);
565 } // end of the 'PMA_getDbComment()' function
568 * Gets the comment for a db
571 * @param string the name of the db to check for
572 * @return string comment
574 function PMA_getDbComments()
576 $cfgRelation = PMA_getRelationsParam();
579 if ($cfgRelation['commwork']) {
580 // pmadb internal db comment
582 SELECT `db_name`, `comment`
583 FROM " . PMA_backquote($cfgRelation['db']) . "." . PMA_backquote($cfgRelation['column_info']) . "
584 WHERE `column_name` = '(db_comment)'";
585 $com_rs = PMA_query_as_controluser($com_qry, true, PMA_DBI_QUERY_STORE
);
587 if ($com_rs && PMA_DBI_num_rows($com_rs) > 0) {
588 while ($row = PMA_DBI_fetch_assoc($com_rs)) {
589 $comments[$row['db_name']] = $row['comment'];
592 PMA_DBI_free_result($com_rs);
596 } // end of the 'PMA_getDbComments()' function
599 * Set a database comment to a certain value.
602 * @param string $db the name of the db
603 * @param string $comment the value of the column
604 * @return boolean true, if comment-query was made.
606 function PMA_setDbComment($db, $comment = '')
608 $cfgRelation = PMA_getRelationsParam();
610 if (! $cfgRelation['commwork']) {
614 if (strlen($comment)) {
617 " . PMA_backquote($cfgRelation['db']) . "." . PMA_backquote($cfgRelation['column_info']) . "
618 (`db_name`, `table_name`, `column_name`, `comment`)
620 '" . PMA_sqlAddSlashes($db) . "',
623 '" . PMA_sqlAddSlashes($comment) . "')
624 ON DUPLICATE KEY UPDATE
625 `comment` = '" . PMA_sqlAddSlashes($comment) . "'";
629 ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['column_info']) . '
630 WHERE `db_name` = \'' . PMA_sqlAddSlashes($db) . '\'
631 AND `table_name` = \'\'
632 AND `column_name` = \'(db_comment)\'';
635 if (isset($upd_query)) {
636 return PMA_query_as_controluser($upd_query);
640 } // end of 'PMA_setDbComment()' function
643 * Set a SQL history entry
645 * @param string $db the name of the db
646 * @param string $table the name of the table
647 * @param string $username the username
648 * @param string $sqlquery the sql query
651 function PMA_setHistory($db, $table, $username, $sqlquery)
653 if (strlen($sqlquery) > $GLOBALS['cfg']['MaxCharactersInDisplayedSQL']) {
657 $cfgRelation = PMA_getRelationsParam();
659 if (! isset($_SESSION['sql_history'])) {
660 $_SESSION['sql_history'] = array();
663 $key = md5($sqlquery . $db . $table);
665 if (isset($_SESSION['sql_history'][$key])) {
666 unset($_SESSION['sql_history'][$key]);
669 $_SESSION['sql_history'][$key] = array(
672 'sqlquery' => $sqlquery,
675 if (count($_SESSION['sql_history']) > $GLOBALS['cfg']['QueryHistoryMax']) {
676 // history should not exceed a maximum count
677 array_shift($_SESSION['sql_history']);
680 if (! $cfgRelation['historywork'] ||
! $GLOBALS['cfg']['QueryHistoryDB']) {
684 PMA_query_as_controluser('
686 ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['history']) . '
693 (\'' . PMA_sqlAddSlashes($username) . '\',
694 \'' . PMA_sqlAddSlashes($db) . '\',
695 \'' . PMA_sqlAddSlashes($table) . '\',
697 \'' . PMA_sqlAddSlashes($sqlquery) . '\')');
698 } // end of 'PMA_setHistory()' function
701 * Gets a SQL history entry
703 * @param string $username the username
704 * @return array list of history items
707 function PMA_getHistory($username)
709 $cfgRelation = PMA_getRelationsParam();
711 if (! $cfgRelation['historywork']) {
719 FROM ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['history']) . '
720 WHERE `username` = \'' . PMA_sqlAddSlashes($username) . '\'
723 return PMA_DBI_fetch_result($hist_query, null, null, $GLOBALS['controllink']);
724 } // end of 'PMA_getHistory()' function
729 * deletes entries that exceeds $cfg['QueryHistoryMax'], oldest first, for the
732 * @param string $username the username
735 function PMA_purgeHistory($username)
737 $cfgRelation = PMA_getRelationsParam();
738 if (! $GLOBALS['cfg']['QueryHistoryDB'] ||
! $cfgRelation['historywork']) {
742 if (! $cfgRelation['historywork']) {
748 FROM ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['history']) . '
749 WHERE `username` = \'' . PMA_sqlAddSlashes($username) . '\'
750 ORDER BY `timevalue` DESC
751 LIMIT ' . $GLOBALS['cfg']['QueryHistoryMax'] . ', 1';
753 if ($max_time = PMA_DBI_fetch_value($search_query, 0, 0, $GLOBALS['controllink'])) {
754 PMA_query_as_controluser('
756 ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['history']) . '
757 WHERE `username` = \'' . PMA_sqlAddSlashes($username) . '\'
758 AND `timevalue` <= \'' . $max_time . '\'');
760 } // end of 'PMA_purgeHistory()' function
763 * Prepares the dropdown for one mode
765 * @param array $foreign the keys and values for foreigns
766 * @param string $data the current data of the dropdown
767 * @param string $mode the needed mode
769 * @return array the <option value=""><option>s
773 function PMA__foreignDropdownBuild($foreign, $data, $mode)
775 $reloptions = array();
777 // id-only is a special mode used when no foreign display column
779 if ($mode == 'id-content' ||
$mode == 'id-only') {
780 // sort for id-content
781 if ($GLOBALS['cfg']['NaturalOrder']) {
782 uksort($foreign, 'strnatcasecmp');
786 } elseif ($mode == 'content-id') {
787 // sort for content-id
788 if ($GLOBALS['cfg']['NaturalOrder']) {
789 natcasesort($foreign);
795 foreach ($foreign as $key => $value) {
796 if (PMA_strlen($value) <= $GLOBALS['cfg']['LimitChars']) {
798 $value = htmlspecialchars($value);
800 $vtitle = htmlspecialchars($value);
801 $value = htmlspecialchars(substr($value, 0, $GLOBALS['cfg']['LimitChars']) . '...');
804 $reloption = '<option value="' . htmlspecialchars($key) . '"';
806 $reloption .= ' title="' . $vtitle . '"';
809 if ((string) $key == (string) $data) {
810 $reloption .= ' selected="selected"';
813 if ($mode == 'content-id') {
814 $reloptions[] = $reloption . '>' . $value . ' - ' . htmlspecialchars($key) . '</option>';
815 } elseif ($mode == 'id-content') {
816 $reloptions[] = $reloption . '>' . htmlspecialchars($key) . ' - ' . $value . '</option>';
817 } elseif ($mode == 'id-only') {
818 $reloptions[] = $reloption . '>' . htmlspecialchars($key) . '</option>';
823 } // end of 'PMA__foreignDropdownBuild' function
826 * Outputs dropdown with values of foreign fields
828 * @param array array of the displayed row
829 * @param string the foreign field
830 * @param string the foreign field to display
831 * @param string the current data of the dropdown (field in row)
832 * @return string the <option value=""><option>s
835 function PMA_foreignDropdown($disp_row, $foreign_field, $foreign_display, $data,
839 $max = $GLOBALS['cfg']['ForeignKeyMaxLimit'];
845 foreach ($disp_row as $relrow) {
846 $key = $relrow[$foreign_field];
848 // if the display field has been defined for this foreign table
849 if ($foreign_display) {
850 $value = $relrow[$foreign_display];
853 } // end if ($foreign_display)
855 $foreign[$key] = $value;
858 // put the dropdown sections in correct order
861 if ($foreign_display) {
862 if (PMA_isValid($GLOBALS['cfg']['ForeignKeyDropdownOrder'], 'array')) {
863 if (PMA_isValid($GLOBALS['cfg']['ForeignKeyDropdownOrder'][0])) {
864 $top = PMA__foreignDropdownBuild($foreign, $data,
865 $GLOBALS['cfg']['ForeignKeyDropdownOrder'][0]);
867 if (PMA_isValid($GLOBALS['cfg']['ForeignKeyDropdownOrder'][1])) {
868 $bottom = PMA__foreignDropdownBuild($foreign, $data,
869 $GLOBALS['cfg']['ForeignKeyDropdownOrder'][1]);
872 $top = PMA__foreignDropdownBuild($foreign, $data, 'id-content');
873 $bottom = PMA__foreignDropdownBuild($foreign, $data, 'content-id');
876 $top = PMA__foreignDropdownBuild($foreign, $data, 'id-only');
879 // beginning of dropdown
880 $ret = '<option value=""> </option>';
881 $top_count = count($top);
882 if ($max == -1 ||
$top_count < $max) {
883 $ret .= implode('', $top);
884 if ($foreign_display && $top_count > 0) {
885 // this empty option is to visually mark the beginning of the
886 // second series of values (bottom)
887 $ret .= '<option value=""> </option>';
890 if ($foreign_display) {
891 $ret .= implode('', $bottom);
895 } // end of 'PMA_foreignDropdown()' function
898 * Gets foreign keys in preparation for a drop-down selector
900 * @param array array of the foreign keys
901 * @param string the foreign field name
902 * @param bool whether to override the total
903 * @param string a possible filter
904 * @param string a possible LIMIT clause
905 * @return array data about the foreign keys
909 function PMA_getForeignData($foreigners, $field, $override_total, $foreign_filter, $foreign_limit)
911 // we always show the foreign field in the drop-down; if a display
912 // field is defined, we show it besides the foreign field
913 $foreign_link = false;
914 if ($foreigners && isset($foreigners[$field])) {
915 $foreigner = $foreigners[$field];
916 $foreign_db = $foreigner['foreign_db'];
917 $foreign_table = $foreigner['foreign_table'];
918 $foreign_field = $foreigner['foreign_field'];
920 // Count number of rows in the foreign table. Currently we do
921 // not use a drop-down if more than 200 rows in the foreign table,
922 // for speed reasons and because we need a better interface for this.
924 // We could also do the SELECT anyway, with a LIMIT, and ensure that
925 // the current value of the field is one of the choices.
927 $the_total = PMA_Table
::countRecords($foreign_db, $foreign_table);
929 if ($override_total == true ||
$the_total < $GLOBALS['cfg']['ForeignKeyMaxLimit']) {
930 // foreign_display can be false if no display field defined:
931 $foreign_display = PMA_getDisplayField($foreign_db, $foreign_table);
933 $f_query_main = 'SELECT ' . PMA_backquote($foreign_field)
934 . (($foreign_display == false) ?
'' : ', ' . PMA_backquote($foreign_display));
935 $f_query_from = ' FROM ' . PMA_backquote($foreign_db) . '.' . PMA_backquote($foreign_table);
936 $f_query_filter = empty($foreign_filter) ?
'' : ' WHERE ' . PMA_backquote($foreign_field)
937 . ' LIKE "%' . PMA_sqlAddSlashes($foreign_filter, true) . '%"'
938 . (($foreign_display == false) ?
'' : ' OR ' . PMA_backquote($foreign_display)
939 . ' LIKE "%' . PMA_sqlAddSlashes($foreign_filter, true) . '%"'
941 $f_query_order = ($foreign_display == false) ?
'' :' ORDER BY ' . PMA_backquote($foreign_table) . '.' . PMA_backquote($foreign_display);
942 $f_query_limit = isset($foreign_limit) ?
$foreign_limit : '';
944 if (!empty($foreign_filter)) {
945 $res = PMA_DBI_query('SELECT COUNT(*)' . $f_query_from . $f_query_filter);
947 $the_total = PMA_DBI_fetch_value($res);
948 @PMA_DBI_free_result
($res);
954 $disp = PMA_DBI_query($f_query_main . $f_query_from . $f_query_filter . $f_query_order . $f_query_limit);
955 if ($disp && PMA_DBI_num_rows($disp) > 0) {
956 // If a resultset has been created, pre-cache it in the $disp_row array
957 // This helps us from not needing to use mysql_data_seek by accessing a pre-cached
958 // PHP array. Usually those resultsets are not that big, so a performance hit should
961 while ($single_disp_row = @PMA_DBI_fetch_assoc
($disp)) {
962 $disp_row[] = $single_disp_row;
964 @PMA_DBI_free_result
($disp);
968 $foreign_link = true;
970 } // end if $foreigners
972 $foreignData['foreign_link'] = $foreign_link;
973 $foreignData['the_total'] = isset($the_total) ?
$the_total : null;
974 $foreignData['foreign_display'] = isset($foreign_display) ?
$foreign_display : null;
975 $foreignData['disp_row'] = isset($disp_row) ?
$disp_row : null;
976 $foreignData['foreign_field'] = isset($foreign_field) ?
$foreign_field : null;
978 } // end of 'PMA_getForeignData()' function
981 * Finds all related tables
983 * @param string whether to go from master to foreign or vice versa
984 * @return boolean always true
985 * @global array $tab_left the list of tables that we still couldn't connect
986 * @global array $tab_know the list of allready connected tables
987 * @global string $fromclause
991 function PMA_getRelatives($from)
993 global $tab_left, $tab_know, $fromclause;
995 if ($from == 'master') {
1000 $in_know = '(\'' . implode('\', \'', $tab_know) . '\')';
1001 $in_left = '(\'' . implode('\', \'', $tab_left) . '\')';
1003 $rel_query = 'SELECT *'
1004 . ' FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db'])
1005 . '.' . PMA_backquote($GLOBALS['cfgRelation']['relation'])
1006 . ' WHERE ' . $from . '_db = \'' . PMA_sqlAddSlashes($GLOBALS['db']) . '\''
1007 . ' AND ' . $to . '_db = \'' . PMA_sqlAddSlashes($GLOBALS['db']) . '\''
1008 . ' AND ' . $from . '_table IN ' . $in_know
1009 . ' AND ' . $to . '_table IN ' . $in_left;
1010 $relations = @PMA_DBI_query
($rel_query, $GLOBALS['controllink']);
1011 while ($row = PMA_DBI_fetch_assoc($relations)) {
1012 $found_table = $row[$to . '_table'];
1013 if (isset($tab_left[$found_table])) {
1015 .= "\n" . ' LEFT JOIN '
1016 . PMA_backquote($GLOBALS['db']) . '.' . PMA_backquote($row[$to . '_table']) . ' ON '
1017 . PMA_backquote($row[$from . '_table']) . '.'
1018 . PMA_backquote($row[$from . '_field']) . ' = '
1019 . PMA_backquote($row[$to . '_table']) . '.'
1020 . PMA_backquote($row[$to . '_field']) . ' ';
1021 $tab_know[$found_table] = $found_table;
1022 unset($tab_left[$found_table]);
1027 } // end of the "PMA_getRelatives()" function
1030 * Rename a field in relation tables
1032 * usually called after a field in a table was renamed in tbl_alter.php
1035 * @param string $table
1036 * @param string $field
1037 * @param string $new_name
1039 function PMA_REL_renameField($db, $table, $field, $new_name)
1041 $cfgRelation = PMA_getRelationsParam();
1043 if ($cfgRelation['displaywork']) {
1044 $table_query = 'UPDATE ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['table_info'])
1045 . ' SET display_field = \'' . PMA_sqlAddSlashes($new_name) . '\''
1046 . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\''
1047 . ' AND table_name = \'' . PMA_sqlAddSlashes($table) . '\''
1048 . ' AND display_field = \'' . PMA_sqlAddSlashes($field) . '\'';
1049 PMA_query_as_controluser($table_query);
1052 if ($cfgRelation['relwork']) {
1053 $table_query = 'UPDATE ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['relation'])
1054 . ' SET master_field = \'' . PMA_sqlAddSlashes($new_name) . '\''
1055 . ' WHERE master_db = \'' . PMA_sqlAddSlashes($db) . '\''
1056 . ' AND master_table = \'' . PMA_sqlAddSlashes($table) . '\''
1057 . ' AND master_field = \'' . PMA_sqlAddSlashes($field) . '\'';
1058 PMA_query_as_controluser($table_query);
1060 $table_query = 'UPDATE ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['relation'])
1061 . ' SET foreign_field = \'' . PMA_sqlAddSlashes($new_name) . '\''
1062 . ' WHERE foreign_db = \'' . PMA_sqlAddSlashes($db) . '\''
1063 . ' AND foreign_table = \'' . PMA_sqlAddSlashes($table) . '\''
1064 . ' AND foreign_field = \'' . PMA_sqlAddSlashes($field) . '\'';
1065 PMA_query_as_controluser($table_query);
1072 * @param string $newpage
1073 * @param array $cfgRelation
1075 * @return string $pdf_page_number
1077 function PMA_REL_create_page($newpage, $cfgRelation, $db)
1079 if (! isset($newpage) ||
$newpage == '') {
1080 $newpage = __('no description');
1082 $ins_query = 'INSERT INTO ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['pdf_pages'])
1083 . ' (db_name, page_descr)'
1084 . ' VALUES (\'' . PMA_sqlAddSlashes($db) . '\', \'' . PMA_sqlAddSlashes($newpage) . '\')';
1085 PMA_query_as_controluser($ins_query, false);
1086 return PMA_DBI_insert_id(isset($GLOBALS['controllink']) ?
$GLOBALS['controllink'] : '');