pluraliser ignores selected words e,g, "staff"

This commit is contained in:
naomi 2022-06-05 15:49:27 +01:00
parent eb9335b250
commit 183537db39
1 changed files with 7 additions and 1 deletions

View File

@ -2,8 +2,14 @@
namespace Drupal\opencase;
class Pluraliser {
const NO_CHANGE = ['Staff'];
public static function pluralise($text) {
return $text . "s";
if (in_array($text, self::NO_CHANGE)) {
return $text;
} else {
return $text . "s";
}
}
}