diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-05-15 13:48:13 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-05-15 13:48:13 +0200 |
commit | ceb5b56c3b8db37425338e9c2661c5c4bc4ac069 (patch) | |
tree | cc28991a9f6aa3b3f55034f3d9ea4d0c97438a43 /program/include/rcube_addressbook.php | |
parent | 92be3ee4a471406bc75b345760584cc317b289fe (diff) |
Move rcube_addressbook::normalize_string() to rcube_utils::normalize_string() for general purpose
Diffstat (limited to 'program/include/rcube_addressbook.php')
-rw-r--r-- | program/include/rcube_addressbook.php | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/program/include/rcube_addressbook.php b/program/include/rcube_addressbook.php index 2f264f974..8e104ddee 100644 --- a/program/include/rcube_addressbook.php +++ b/program/include/rcube_addressbook.php @@ -447,30 +447,13 @@ abstract class rcube_addressbook * * @param string Input string (UTF-8) * @return string Normalized string + * @deprecated since 0.9-beta */ protected static function normalize_string($str) { - // split by words - $arr = explode(" ", preg_replace( - array('/[\s;\+\-\/]+/i', '/(\d)[-.\s]+(\d)/', '/\s\w{1,3}\s/'), - array(' ', '\\1\\2', ' '), - $str)); - - foreach ($arr as $i => $part) { - if (utf8_encode(utf8_decode($part)) == $part) { // is latin-1 ? - $arr[$i] = utf8_encode(strtr(strtolower(strtr(utf8_decode($part), - 'ÇçäâàåéêëèïîìÅÉöôòüûùÿøØáíóúñÑÁÂÀãÃÊËÈÍÎÏÓÔõÕÚÛÙýÝ', - 'ccaaaaeeeeiiiaeooouuuyooaiounnaaaaaeeeiiioooouuuyy')), - array('ß' => 'ss', 'ae' => 'a', 'oe' => 'o', 'ue' => 'u'))); - } - else - $arr[$i] = mb_strtolower($part); - } - - return join(" ", $arr); + return rcbe_utils::normalize_string($str); } - /** * Compose a valid display name from the given structured contact data * |