MediaWiki master
LanguageAr.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Languages;
4
13
19class LanguageAr extends Language {
20
29 public function normalize( $s ) {
30 $s = parent::normalize( $s );
31 return $this->transformUsingPairFile( NormalizeAr::class, $s );
32 }
33}
34
36class_alias( LanguageAr::class, 'LanguageAr' );
Base class for language-specific code.
Definition Language.php:65
transformUsingPairFile(string $dataClass, string $input)
Transform a string using serialized data stored in the given file (which must be in the serialized su...
Arabic (العربية) specific code.
normalize( $s)
Replace Arabic presentation forms with their standard equivalents (T11413).