forked from joomla/Component-Builder
Merge branch 'bamboo2panda-staging' into staging
This commit is contained in:
commit
4fb4069d64
@ -6874,6 +6874,32 @@ abstract class ComponentbuilderHelper
|
|||||||
$string = trim($string);
|
$string = trim($string);
|
||||||
$string = preg_replace('/'.$spacer.'+/', ' ', $string);
|
$string = preg_replace('/'.$spacer.'+/', ' ', $string);
|
||||||
$string = preg_replace('/\s+/', ' ', $string);
|
$string = preg_replace('/\s+/', ' ', $string);
|
||||||
|
// transliterate cyrillic characters
|
||||||
|
$transliterationTable = array(
|
||||||
|
'а' => 'a', 'б' => 'b', 'в' => 'v',
|
||||||
|
'г' => 'g', 'д' => 'd', 'е' => 'e',
|
||||||
|
'ё' => 'e', 'ж' => 'zh', 'з' => 'z',
|
||||||
|
'и' => 'i', 'й' => 'y', 'к' => 'k',
|
||||||
|
'л' => 'l', 'м' => 'm', 'н' => 'n',
|
||||||
|
'о' => 'o', 'п' => 'p', 'р' => 'r',
|
||||||
|
'с' => 's', 'т' => 't', 'у' => 'u',
|
||||||
|
'ф' => 'f', 'х' => 'h', 'ц' => 'c',
|
||||||
|
'ч' => 'ch', 'ш' => 'sh', 'щ' => 'sch',
|
||||||
|
'ь' => '', 'ы' => 'y', 'ъ' => '',
|
||||||
|
'э' => 'e', 'ю' => 'yu', 'я' => 'ya',
|
||||||
|
'А' => 'A', 'Б' => 'B', 'В' => 'V',
|
||||||
|
'Г' => 'G', 'Д' => 'D', 'Е' => 'E',
|
||||||
|
'Ё' => 'E', 'Ж' => 'Zh', 'З' => 'Z',
|
||||||
|
'И' => 'I', 'Й' => 'Y', 'К' => 'K',
|
||||||
|
'Л' => 'L', 'М' => 'M', 'Н' => 'N',
|
||||||
|
'О' => 'O', 'П' => 'P', 'Р' => 'R',
|
||||||
|
'С' => 'S', 'Т' => 'T', 'У' => 'U',
|
||||||
|
'Ф' => 'F', 'Х' => 'H', 'Ц' => 'C',
|
||||||
|
'Ч' => 'Ch', 'Ш' => 'Sh', 'Щ' => 'Sch',
|
||||||
|
'Ь' => '', 'Ы' => 'Y', 'Ъ' => '',
|
||||||
|
'Э' => 'E', 'Ю' => 'Yu', 'Я' => 'Ya',
|
||||||
|
);
|
||||||
|
$string = strtr($string, $transliterationTable);
|
||||||
// remove all and keep only characters
|
// remove all and keep only characters
|
||||||
if ($keepOnlyCharacters)
|
if ($keepOnlyCharacters)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user