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 $female = $options[1] ?? $male;
44 $other = $options[2] ?? $male;
45
46 if ( $value === 'male' ) {
47 return $male;
48 } elseif ( $value === 'female' ) {
49 return $female;
50 }
51
52 return $other;
53 }
54}
process(string $value, array $options)
Selects the appropriate text variant based on gender.
Definition Gender.php:41