Changeset View
Changeset View
Standalone View
Standalone View
src/applications/ponder/application/PhabricatorPonderApplication.php
| Show All 22 Lines | return array( | ||||
| new PonderQuestion(), | new PonderQuestion(), | ||||
| ); | ); | ||||
| } | } | ||||
| public function getTitleGlyph() { | public function getTitleGlyph() { | ||||
| return "\xE2\x97\xB3"; | return "\xE2\x97\xB3"; | ||||
| } | } | ||||
| public function loadStatus(PhabricatorUser $user) { | |||||
| // Replace with "x new unanswered questions" or some such | |||||
| // make sure to use `self::formatStatusCount` and friends...! | |||||
| $status = array(); | |||||
| return $status; | |||||
| } | |||||
| public function getRemarkupRules() { | public function getRemarkupRules() { | ||||
| return array( | return array( | ||||
| new PonderRemarkupRule(), | new PonderRemarkupRule(), | ||||
| ); | ); | ||||
| } | } | ||||
| public function getRoutes() { | public function getRoutes() { | ||||
| return array( | return array( | ||||
| ▲ Show 20 Lines • Show All 65 Lines • Show Last 20 Lines | |||||