MediaWiki master
Gender.php
Go to the documentation of this file.
1<?php
8
25class Gender {
26
41 public function process( string $value, array $options ): string {
42 $male = $options[0] ?? '';
43
44 if ( $value === 'male' ) {
45 return $male;
46 } elseif ( $value === 'female' ) {
47 return $options[1] ?? $male;
48 }
49
50 return $options[2] ?? $male;
51 }
52}
process(string $value, array $options)
Selects the appropriate text variant based on gender.
Definition Gender.php:41