Differential D13200 Diff 31965 src/applications/releeph/field/specification/ReleephSeverityFieldSpecification.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/releeph/field/specification/ReleephSeverityFieldSpecification.php
| <?php | <?php | ||||
| final class ReleephSeverityFieldSpecification | final class ReleephSeverityFieldSpecification | ||||
| extends ReleephLevelFieldSpecification { | extends ReleephLevelFieldSpecification { | ||||
| const HOTFIX = 'HOTFIX'; | const HOTFIX = 'HOTFIX'; | ||||
| const RELEASE = 'RELEASE'; | const RELEASE = 'RELEASE'; | ||||
| public function getFieldKey() { | public function getFieldKey() { | ||||
| return 'severity'; | return 'severity'; | ||||
| } | } | ||||
| public function getName() { | public function getName() { | ||||
| return 'Severity'; | return pht('Severity'); | ||||
| } | } | ||||
| public function getStorageKey() { | public function getStorageKey() { | ||||
| return 'releeph:severity'; | return 'releeph:severity'; | ||||
| } | } | ||||
| public function getLevels() { | public function getLevels() { | ||||
| return array( | return array( | ||||
| Show All 31 Lines | |||||