$mimetype) {
if (isset($types['empty_mimetype'][$mimetype])) {
echo '' . $mimetype . '
';
} else {
echo $mimetype . '
';
}
}
?>
()
|
|
$transform) {
$func = strtolower(str_ireplace('.inc.php', '', $types['transformation_file'][$key]));
require './libraries/transformations/' . $types['transformation_file'][$key];
$funcname = 'PMA_transformation_' . $func . '_info';
$desc = '' . sprintf(__('No description is available for this transformation.
Please ask the author what %s does.'), 'PMA_transformation_' . $func . '()') . '';
if (function_exists($funcname)) {
$desc_arr = $funcname();
if (isset($desc_arr['info'])) {
$desc = $desc_arr['info'];
}
}
?>
|
|