added infou about UFPDF to documentation

This commit is contained in:
Michal Čihař
2004-12-29 14:16:51 +00:00
parent 9edf126599
commit f1f39b8ed1
162 changed files with 4240 additions and 2329 deletions

View File

@@ -45,6 +45,14 @@ if (PMA_MYSQL_INT_VERSION >= 40100){
unset($res, $row);
function PMA_getCollationDescr($collation) {
static $collation_cache;
if (!is_array($collation_cache)) {
$collation_cache = array();
} elseif (isset($collation_cache[$collation])) {
return $collation_cache[$collation];
}
if ($collation == 'binary') {
return $GLOBALS['strBinary'];
}
@@ -254,6 +262,8 @@ if (PMA_MYSQL_INT_VERSION >= 40100){
$descr .= ', ' . $GLOBALS['strCaseSensitive'];
}
}
$collation_cache[$collation] = $descr;
return $descr;
}
@@ -286,7 +296,7 @@ if (PMA_MYSQL_INT_VERSION >= 40100){
define('PMA_CSDROPDOWN_COLLATION', 0);
define('PMA_CSDROPDOWN_CHARSET', 1);
function PMA_generateCharsetDropdownBox($type = PMA_CSDROPDOWN_COLLATION, $name = NULL, $id = NULL, $default = NULL, $label = TRUE, $indent = 0, $submitOnChange = FALSE) {
global $mysql_charsets, $mysql_charsets_descriptions, $mysql_collations;