Changeset View
Changeset View
Standalone View
Standalone View
src/applications/owners/application/PhabricatorOwnersApplication.php
| Show All 20 Lines | final class PhabricatorOwnersApplication extends PhabricatorApplication { | ||||
| public function getTitleGlyph() { | public function getTitleGlyph() { | ||||
| return "\xE2\x98\x81"; | return "\xE2\x98\x81"; | ||||
| } | } | ||||
| public function getHelpDocumentationArticles(PhabricatorUser $viewer) { | public function getHelpDocumentationArticles(PhabricatorUser $viewer) { | ||||
| return array( | return array( | ||||
| array( | array( | ||||
| 'name' => pht('Owners User Guide'), | 'name' => pht('Owners User Guide'), | ||||
| 'href' => PhabricatorEnv::getDoclink('Owners Tool User Guide'), | 'href' => PhabricatorEnv::getDoclink('Owners User Guide'), | ||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| public function getFlavorText() { | public function getFlavorText() { | ||||
| return pht('Adopt today!'); | return pht('Adopt today!'); | ||||
| } | } | ||||
| Show All 17 Lines | |||||