Differential D10585 Diff 25583 src/applications/harbormaster/controller/HarbormasterPlanViewController.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/harbormaster/controller/HarbormasterPlanViewController.php
| Show First 20 Lines • Show All 385 Lines • ▼ Show 20 Lines | foreach ($artifacts as $artifact) { | ||||
| $icon_label = pht('Valid Output'); | $icon_label = pht('Valid Output'); | ||||
| } | } | ||||
| } | } | ||||
| if ($error) { | if ($error) { | ||||
| $note = array( | $note = array( | ||||
| phutil_tag('strong', array(), pht('ERROR:')), | phutil_tag('strong', array(), pht('ERROR:')), | ||||
| ' ', | ' ', | ||||
| $error); | $error, | ||||
| ); | |||||
| } else { | } else { | ||||
| $note = $bound; | $note = $bound; | ||||
| } | } | ||||
| $list->addItem( | $list->addItem( | ||||
| id(new PHUIStatusItemView()) | id(new PHUIStatusItemView()) | ||||
| ->setIcon($icon, $color, $icon_label) | ->setIcon($icon, $color, $icon_label) | ||||
| ->setTarget($artifact['name']) | ->setTarget($artifact['name']) | ||||
| ▲ Show 20 Lines • Show All 49 Lines • ▼ Show 20 Lines | foreach ($step_phids as $step_phid) { | ||||
| $color = 'green'; | $color = 'green'; | ||||
| $icon_label = pht('Valid Input'); | $icon_label = pht('Valid Input'); | ||||
| } | } | ||||
| if ($error) { | if ($error) { | ||||
| $note = array( | $note = array( | ||||
| phutil_tag('strong', array(), pht('ERROR:')), | phutil_tag('strong', array(), pht('ERROR:')), | ||||
| ' ', | ' ', | ||||
| $error); | $error, | ||||
| ); | |||||
| } else { | } else { | ||||
| $note = $bound; | $note = $bound; | ||||
| } | } | ||||
| $list->addItem( | $list->addItem( | ||||
| id(new PHUIStatusItemView()) | id(new PHUIStatusItemView()) | ||||
| ->setIcon($icon, $color, $icon_label) | ->setIcon($icon, $color, $icon_label) | ||||
| ->setTarget(pht('Build Step')) | ->setTarget(pht('Build Step')) | ||||
| Show All 11 Lines | |||||