mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 10:38:45 +02:00
Export/CSV:
- Select the Character encoding (argument for CLI mode: charset) - Make the correct column name for friendly names (ext key -> ext field) SVN:trunk[3681]
This commit is contained in:
@@ -1090,5 +1090,28 @@ class utils
|
||||
}
|
||||
return $response;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a standard list of character sets
|
||||
*
|
||||
* @param array $aAdditionalEncodings Additional values
|
||||
* @return array of iconv code => english label, sorted by label
|
||||
*/
|
||||
public static function GetPossibleEncodings($aAdditionalEncodings = array())
|
||||
{
|
||||
// Encodings supported:
|
||||
// ICONV_CODE => Display Name
|
||||
// Each iconv installation supports different encodings
|
||||
// Some reasonably common and useful encodings are listed here
|
||||
$aPossibleEncodings = array(
|
||||
'UTF-8' => 'Unicode (UTF-8)',
|
||||
'ISO-8859-1' => 'Western (ISO-8859-1)',
|
||||
'WINDOWS-1251' => 'Cyrilic (Windows 1251)',
|
||||
'WINDOWS-1252' => 'Western (Windows 1252)',
|
||||
'ISO-8859-15' => 'Western (ISO-8859-15)',
|
||||
);
|
||||
$aPossibleEncodings = array_merge($aPossibleEncodings, $aAdditionalEncodings);
|
||||
asort($aPossibleEncodings);
|
||||
return $aPossibleEncodings;
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user