2 /* vim: set expandtab sw=4 ts=4 sts=4: */
7 if (! defined('PHPMYADMIN')) {
14 if (! PMA_cacheExists('mysql_charsets', true)) {
16 ?
'SELECT * FROM data_dictionary.CHARACTER_SETS'
17 : 'SELECT * FROM information_schema.CHARACTER_SETS';
18 $res = PMA_DBI_query($sql);
20 $mysql_charsets = array();
21 while ($row = PMA_DBI_fetch_assoc($res)) {
22 $mysql_charsets[] = $row['CHARACTER_SET_NAME'];
24 //$mysql_charsets_maxlen[$row['Charset']] = $row['Maxlen'];
25 $mysql_charsets_descriptions[$row['CHARACTER_SET_NAME']] = $row['DESCRIPTION'];
27 PMA_DBI_free_result($res);
29 sort($mysql_charsets, SORT_STRING
);
31 $mysql_collations = array_flip($mysql_charsets);
32 $mysql_default_collations = $mysql_collations_flat = $mysql_charsets_available = $mysql_collations_available = array();
35 ?
'SELECT * FROM data_dictionary.COLLATIONS'
36 : 'SELECT * FROM information_schema.COLLATIONS';
37 $res = PMA_DBI_query($sql);
38 while ($row = PMA_DBI_fetch_assoc($res)) {
39 if (! is_array($mysql_collations[$row['CHARACTER_SET_NAME']])) {
40 $mysql_collations[$row['CHARACTER_SET_NAME']] = array($row['COLLATION_NAME']);
42 $mysql_collations[$row['CHARACTER_SET_NAME']][] = $row['COLLATION_NAME'];
44 $mysql_collations_flat[] = $row['COLLATION_NAME'];
45 if ($row['IS_DEFAULT'] == 'Yes') {
46 $mysql_default_collations[$row['CHARACTER_SET_NAME']] = $row['COLLATION_NAME'];
48 //$mysql_collations_available[$row['Collation']] = ! isset($row['Compiled']) || $row['Compiled'] == 'Yes';
49 $mysql_collations_available[$row['COLLATION_NAME']] = true;
50 $mysql_charsets_available[$row['CHARACTER_SET_NAME']] =
51 !empty($mysql_charsets_available[$row['CHARACTER_SET_NAME']])
52 ||
!empty($mysql_collations_available[$row['COLLATION_NAME']]);
54 PMA_DBI_free_result($res);
57 if (PMA_DRIZZLE
&& isset($mysql_collations['utf8_general_ci']) && isset($mysql_collations['utf8'])) {
58 $mysql_collations['utf8'] = $mysql_collations['utf8_general_ci'];
59 unset($mysql_collations['utf8_general_ci']);
62 sort($mysql_collations_flat, SORT_STRING
);
63 foreach ($mysql_collations AS $key => $value) {
64 sort($mysql_collations[$key], SORT_STRING
);
65 reset($mysql_collations[$key]);
69 PMA_cacheSet('mysql_charsets', $GLOBALS['mysql_charsets'], true);
70 PMA_cacheSet('mysql_charsets_descriptions', $GLOBALS['mysql_charsets_descriptions'], true);
71 PMA_cacheSet('mysql_charsets_available', $GLOBALS['mysql_charsets_available'], true);
72 PMA_cacheSet('mysql_collations', $GLOBALS['mysql_collations'], true);
73 PMA_cacheSet('mysql_default_collations', $GLOBALS['mysql_default_collations'], true);
74 PMA_cacheSet('mysql_collations_flat', $GLOBALS['mysql_collations_flat'], true);
75 PMA_cacheSet('mysql_collations_available', $GLOBALS['mysql_collations_available'], true);
77 $GLOBALS['mysql_charsets'] = PMA_cacheGet('mysql_charsets', true);
78 $GLOBALS['mysql_charsets_descriptions'] = PMA_cacheGet('mysql_charsets_descriptions', true);
79 $GLOBALS['mysql_charsets_available'] = PMA_cacheGet('mysql_charsets_available', true);
80 $GLOBALS['mysql_collations'] = PMA_cacheGet('mysql_collations', true);
81 $GLOBALS['mysql_default_collations'] = PMA_cacheGet('mysql_default_collations', true);
82 $GLOBALS['mysql_collations_flat'] = PMA_cacheGet('mysql_collations_flat', true);
83 $GLOBALS['mysql_collations_available'] = PMA_cacheGet('mysql_collations_available', true);
86 define('PMA_CSDROPDOWN_COLLATION', 0);
87 define('PMA_CSDROPDOWN_CHARSET', 1);
89 function PMA_generateCharsetDropdownBox($type = PMA_CSDROPDOWN_COLLATION
,
90 $name = null, $id = null, $default = null, $label = true, $indent = 0,
91 $submitOnChange = false, $displayUnavailable = false)
93 global $mysql_charsets, $mysql_charsets_descriptions,
94 $mysql_charsets_available, $mysql_collations, $mysql_collations_available;
97 if ($type == PMA_CSDROPDOWN_COLLATION
) {
100 $name = 'character_set';
104 $return_str = '<select xml:lang="en" dir="ltr" name="'
105 . htmlspecialchars($name) . '"'
106 . (empty($id) ?
'' : ' id="' . htmlspecialchars($id) . '"')
107 . ($submitOnChange ?
' class="autosubmit"' : '') . '>' . "\n";
109 $return_str .= '<option value="">'
110 . ($type == PMA_CSDROPDOWN_COLLATION ?
__('Collation') : __('Charset'))
111 . '</option>' . "\n";
113 $return_str .= '<option value=""></option>' . "\n";
114 foreach ($mysql_charsets as $current_charset) {
115 if (!$mysql_charsets_available[$current_charset]) {
119 empty($mysql_charsets_descriptions[$current_charset])
121 : $mysql_charsets_descriptions[$current_charset];
123 if ($type == PMA_CSDROPDOWN_COLLATION
) {
124 $return_str .= '<optgroup label="' . $current_charset
125 . '" title="' . $current_cs_descr . '">' . "\n";
126 foreach ($mysql_collations[$current_charset] as $current_collation) {
127 if (!$mysql_collations_available[$current_collation]) {
130 $return_str .= '<option value="' . $current_collation
131 . '" title="' . PMA_getCollationDescr($current_collation) . '"'
132 . ($default == $current_collation ?
' selected="selected"' : '') . '>'
133 . $current_collation . '</option>' . "\n";
135 $return_str .= '</optgroup>' . "\n";
137 $return_str .= '<option value="' . $current_charset
138 . '" title="' . $current_cs_descr . '"'
139 . ($default == $current_charset ?
' selected="selected"' : '') . '>'
140 . $current_charset . '</option>' . "\n";
143 $return_str .= '</select>' . "\n";
148 function PMA_generateCharsetQueryPart($collation)
150 list($charset) = explode('_', $collation);
151 return ' CHARACTER SET ' . $charset . ($charset == $collation ?
'' : ' COLLATE ' . $collation);
155 * returns collation of given db
157 * @param string $db name of db
158 * @return string collation of $db
160 function PMA_getDbCollation($db)
162 if ($db == 'information_schema') {
163 // We don't have to check the collation of the virtual
164 // information_schema database: We know it!
165 return 'utf8_general_ci';
168 if (! $GLOBALS['cfg']['Server']['DisableIS']) {
169 // this is slow with thousands of databases
170 return PMA_DBI_fetch_value('SELECT DEFAULT_COLLATION_NAME FROM information_schema.SCHEMATA WHERE SCHEMA_NAME = \'' . PMA_sqlAddSlashes($db) . '\' LIMIT 1;');
172 PMA_DBI_select_db($db);
173 $return = PMA_DBI_fetch_value('SHOW VARIABLES LIKE \'collation_database\'', 0, 1);
174 if ($db !== $GLOBALS['db']) {
175 PMA_DBI_select_db($GLOBALS['db']);
182 * returns default server collation from show variables
184 * @return string $server_collation
186 function PMA_getServerCollation()
188 return PMA_DBI_fetch_value(
189 'SHOW VARIABLES LIKE \'collation_server\'', 0, 1);
193 * returns description for given collation
196 * @param string $collation MySQL collation string
197 * @return string collation description
199 function PMA_getCollationDescr($collation)
201 if ($collation == 'binary') {
204 $parts = explode('_', $collation);
205 if (count($parts) == 1) {
206 $parts[1] = 'general';
207 } elseif ($parts[1] == 'ci' ||
$parts[1] == 'cs') {
208 $parts[2] = $parts[1];
209 $parts[1] = 'general';
214 $descr = __('Bulgarian');
217 if ($parts[0] == 'gb2312' ||
$parts[0] == 'gbk') {
218 $descr = __('Simplified Chinese');
219 } elseif ($parts[0] == 'big5') {
220 $descr = __('Traditional Chinese');
224 $descr = __('case-insensitive');
227 $descr = __('case-sensitive');
230 $descr = __('Croatian');
233 $descr = __('Czech');
236 $descr = __('Danish');
239 $descr = __('English');
242 $descr = __('Esperanto');
245 $descr = __('Estonian');
248 $descr = __('German') . ' (' . __('dictionary') . ')';
251 $descr = __('German') . ' (' . __('phone book') . ')';
254 $descr = __('Hungarian');
257 $descr = __('Icelandic');
260 $descr = __('Japanese');
263 $descr = __('Latvian');
266 $descr = __('Lithuanian');
269 $descr = __('Korean');
272 $descr = __('Persian');
275 $descr = __('Polish');
278 $descr = __('West European');
281 $descr = __('Romanian');
284 $descr = __('Slovak');
287 $descr = __('Slovenian');
290 $descr = __('Spanish');
293 $descr = __('Traditional Spanish');
296 $descr = __('Swedish');
302 $descr = __('Turkish');
305 $descr = __('Ukrainian');
308 $descr = __('Unicode') . ' (' . __('multilingual') . ')';
317 $descr = __('Unicode') . ' (' . __('multilingual') . ')';
319 // West European charsets
326 $descr = __('West European') . ' (' . __('multilingual') . ')';
328 // Central European charsets
333 $descr = __('Central European') . ' (' . __('multilingual') . ')';
338 $descr = __('Russian');
340 // Simplified Chinese charsets
343 $descr = __('Simplified Chinese');
350 $descr = __('Japanese');
355 $descr = __('Baltic') . ' (' . __('multilingual') . ')';
360 $descr = __('Armenian');
363 $descr = __('Traditional Chinese');
366 $descr = __('Cyrillic') . ' (' . __('multilingual') . ')';
369 $descr = __('Arabic');
372 $descr = __('Korean');
375 $descr = __('Hebrew');
378 $descr = __('Georgian');
381 $descr = __('Greek');
384 $descr = __('Czech-Slovak');
387 $descr = __('Ukrainian');
390 $descr = __('Turkish');
393 $descr = __('Swedish');
399 $descr = __('unknown');
402 if (!empty($is_bin)) {
403 $descr .= ', ' . __('Binary');
406 default: $descr = __('unknown');
408 if (!empty($parts[2])) {
409 if ($parts[2] == 'ci') {
410 $descr .= ', ' . __('case-insensitive');
411 } elseif ($parts[2] == 'cs') {
412 $descr .= ', ' . __('case-sensitive');