Differential D20219 Diff 48280 src/applications/harbormaster/storage/configuration/HarbormasterBuildPlan.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/harbormaster/storage/configuration/HarbormasterBuildPlan.php
| Show First 20 Lines • Show All 85 Lines • ▼ Show 20 Lines | final class HarbormasterBuildPlan extends HarbormasterDAO | ||||
| public function getURI() { | public function getURI() { | ||||
| return urisprintf( | return urisprintf( | ||||
| '/harbormaster/plan/%s/', | '/harbormaster/plan/%s/', | ||||
| $this->getID()); | $this->getID()); | ||||
| } | } | ||||
| public function getObjectName() { | public function getObjectName() { | ||||
| return pht('Build Plan %d', $this->getID()); | return pht('Plan %d', $this->getID()); | ||||
| } | } | ||||
| /* -( Autoplans )---------------------------------------------------------- */ | /* -( Autoplans )---------------------------------------------------------- */ | ||||
| public function isAutoplan() { | public function isAutoplan() { | ||||
| return ($this->getPlanAutoKey() !== null); | return ($this->getPlanAutoKey() !== null); | ||||
| ▲ Show 20 Lines • Show All 137 Lines • Show Last 20 Lines | |||||