@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add "Calendar Event" and "Pholio Mock" to quick create menu

Summary: Ref T3623. Also dropped "New" from everything, since the "Create a new:" label contextualizes that.

Test Plan: Clicked all the stuff in the menu.

Reviewers: chad

Reviewed By: chad

CC: aran

Maniphest Tasks: T3623

Differential Revision: https://secure.phabricator.com/D8103

+27 -3
+12
src/applications/calendar/application/PhabricatorApplicationCalendar.php
··· 55 55 ); 56 56 } 57 57 58 + public function getQuickCreateItems(PhabricatorUser $viewer) { 59 + $items = array(); 60 + 61 + $item = id(new PHUIListItemView()) 62 + ->setName(pht('Calendar Event')) 63 + ->setIcon('new') 64 + ->setHref($this->getBaseURI().'status/create/'); 65 + $items[] = $item; 66 + 67 + return $items; 68 + } 69 + 58 70 }
+1 -1
src/applications/conpherence/application/PhabricatorApplicationConpherence.php
··· 54 54 $items = array(); 55 55 56 56 $item = id(new PHUIListItemView()) 57 - ->setName(pht('New Conpherence Thread')) 57 + ->setName(pht('Conpherence Thread')) 58 58 ->setIcon('new') 59 59 ->setWorkflow(true) 60 60 ->setHref($this->getBaseURI().'new/');
+1 -1
src/applications/maniphest/application/PhabricatorApplicationManiphest.php
··· 94 94 $items = array(); 95 95 96 96 $item = id(new PHUIListItemView()) 97 - ->setName(pht('New Maniphest Task')) 97 + ->setName(pht('Maniphest Task')) 98 98 ->setIcon('new') 99 99 ->setHref($this->getBaseURI().'task/create/'); 100 100 $items[] = $item;
+1 -1
src/applications/paste/application/PhabricatorApplicationPaste.php
··· 54 54 $items = array(); 55 55 56 56 $item = id(new PHUIListItemView()) 57 - ->setName(pht('New Paste')) 57 + ->setName(pht('Paste')) 58 58 ->setIcon('new') 59 59 ->setHref($this->getBaseURI().'create/'); 60 60 $items[] = $item;
+12
src/applications/pholio/application/PhabricatorApplicationPholio.php
··· 70 70 ); 71 71 } 72 72 73 + public function getQuickCreateItems(PhabricatorUser $viewer) { 74 + $items = array(); 75 + 76 + $item = id(new PHUIListItemView()) 77 + ->setName(pht('Pholio Mock')) 78 + ->setIcon('new') 79 + ->setHref($this->getBaseURI().'new/'); 80 + $items[] = $item; 81 + 82 + return $items; 83 + } 84 + 73 85 }