contentLanguage = $contentLanguage; } public function getSortKey( $string ) { return $string; } public function getFirstLetter( $string ) { // Copied from UppercaseCollation. // I'm kind of unclear on when this could happen... if ( $string[0] == "\0" ) { $string = substr( $string, 1 ); } return $this->contentLanguage->firstChar( $string ); } }