MediaWiki master
LanguageAr.php
Go to the documentation of this file.
1<?php
2
24
30class LanguageAr extends Language {
31
40 public function normalize( $s ) {
41 $s = parent::normalize( $s );
42 return $this->transformUsingPairFile( NormalizeAr::class, $s );
43 }
44}
Arabic (العربية) specific code.
normalize( $s)
Replace Arabic presentation forms with their standard equivalents (T11413).
Base class for language-specific code.
Definition Language.php:63
transformUsingPairFile(string $dataClass, string $input)
Transform a string using serialized data stored in the given file (which must be in the serialized su...