mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-12 14:58:33 +01:00
8860f4724f
Summary: Ref T8089. We have a lot of broken/confusing/prototype build steps that I want to hide from users when we unprototype Harbormaster. The dialog is also just kind of unwieldy. Organize this UI a little better and put all the sketchy junk in a "prototypes" group that you can't see unless prototypes are enabled. This doesn't break anything (the old steps will still work fine), but should reduce user confusion. Test Plan: Old UI: {F691439} New UI (prototypes off): {F691440} New UI (prototypes on): {F691441} Reviewers: chad Reviewed By: chad Maniphest Tasks: T8089 Differential Revision: https://secure.phabricator.com/D13803
25 lines
539 B
PHP
25 lines
539 B
PHP
<?php
|
|
|
|
final class HarbormasterThrowExceptionBuildStep
|
|
extends HarbormasterBuildStepImplementation {
|
|
|
|
public function getName() {
|
|
return pht('Throw Exception');
|
|
}
|
|
|
|
public function getGenericDescription() {
|
|
return pht('Throw an exception.');
|
|
}
|
|
|
|
public function getBuildStepGroupKey() {
|
|
return HarbormasterTestBuildStepGroup::GROUPKEY;
|
|
}
|
|
|
|
public function execute(
|
|
HarbormasterBuild $build,
|
|
HarbormasterBuildTarget $build_target) {
|
|
|
|
throw new Exception(pht('(This is an explicit exception.)'));
|
|
}
|
|
|
|
}
|