wiki.techinc.nl/includes/collation/CollationFa.php
Bartosz Dziewoński b3caa05a38 CollationFa: Avoid PHP 7 Unicode escape syntax
We still support PHP 5.5.

Change-Id: I587cb794cded95afe7ad493614a6090a108efe6c
2017-06-22 16:22:49 +02:00

56 lines
1.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
*/
/**
* Temporary workaround for incorrect collation of Persian language ('fa') in ICU 52 (bug T139110).
*
* Replace with other letters that appear in an okish spot in the alphabet
*
* - Characters 'و' 'ا' (often appear at the beginning of words)
* - Characters 'ٲ' 'ٳ' (may appear at the beginning of words in loanwords)
*
* @since 1.29
*/
class CollationFa extends IcuCollation {
// Really hacky - replace with stuff from other blocks.
private $override = [
"\xd8\xa7" => "\xd8\xa1",
"\xd9\x88" => "\xd9\x89",
"\xd9\xb2" => "\xF3\xB3\x80\x81",
"\xd9\xb3" => "\xF3\xB3\x80\x82",
];
public function __construct() {
parent::__construct( 'fa' );
}
public function getSortKey( $string ) {
$modified = strtr( $string, $this->override );
return parent::getSortKey( $modified );
}
public function getFirstLetter( $string ) {
if ( isset( $this->override[substr( $string, 0, 2 )] ) ) {
return substr( $string, 0, 2 );
}
return parent::getFirstLetter( $string );
}
}