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