*/ abstract class Name/* extends Ruga_Enum */ { /** Englisch */ const ENG = 'NAME_eng'; /** Französisch */ const FRA = 'NAME_fra'; /** Deutsch */ const DEU = 'NAME_deu'; protected static $fullnameMap = [ self::ENG => 'Englische Bezeichnung', self::FRA => 'Französische Bezeichnung', self::DEU => 'Deutsche Bezeichnung', ]; }