Changeset View
Changeset View
Standalone View
Standalone View
src/applications/harbormaster/storage/build/HarbormasterBuild.php
| Show First 20 Lines • Show All 187 Lines • ▼ Show 20 Lines | public function getURI() { | ||||
| return "/harbormaster/build/{$id}/"; | return "/harbormaster/build/{$id}/"; | ||||
| } | } | ||||
| protected function getBuildStatusObject() { | protected function getBuildStatusObject() { | ||||
| $status_key = $this->getBuildStatus(); | $status_key = $this->getBuildStatus(); | ||||
| return HarbormasterBuildStatus::newBuildStatusObject($status_key); | return HarbormasterBuildStatus::newBuildStatusObject($status_key); | ||||
| } | } | ||||
| public function getObjectName() { | |||||
| return pht('Build %d', $this->getID()); | |||||
| } | |||||
| /* -( Build Commands )----------------------------------------------------- */ | /* -( Build Commands )----------------------------------------------------- */ | ||||
| private function getUnprocessedCommands() { | private function getUnprocessedCommands() { | ||||
| return $this->assertAttached($this->unprocessedCommands); | return $this->assertAttached($this->unprocessedCommands); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 303 Lines • Show Last 20 Lines | |||||