Support displaying in UTC (RFE #1440386).
[phpmyadmin/last10db.git] / libraries / tbl_properties_common.php
blobb182f0c13eac49d17da4030181301d280339d5c0
1 <?php
2 /* $Id$ */
3 // vim: expandtab sw=4 ts=4 sts=4:
6 /**
7 * Gets some core libraries
8 */
9 require_once('./libraries/common.lib.php');
10 require_once('./libraries/bookmark.lib.php');
12 // Check parameters
13 PMA_checkParameters(array('db', 'table'));
15 if ( PMA_MYSQL_INT_VERSION >= 50002 && $db === 'information_schema' ) {
16 $db_is_information_schema = true;
17 } else {
18 $db_is_information_schema = false;
21 /**
22 * Set parameters for links
23 * @deprecated
25 $url_query = PMA_generate_common_url($db, $table);
27 $url_params['db'] = $db;
28 $url_params['table'] = $table;
30 /**
31 * Defines the urls to return to in case of error in a sql statement
33 $err_url_0 = $cfg['DefaultTabDatabase'] . PMA_generate_common_url( array( 'db' => $db, ) );
34 $err_url = $cfg['DefaultTabTable'] . PMA_generate_common_url( $url_params );
37 /**
38 * Ensures the database and the table exist (else move to the "parent" script)
40 require_once('./libraries/db_table_exists.lib.php');