@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.

Swap "Create Task" button over to EditEngine

Summary: Ref T9132. I can't actually get rid of the EditController yet since a few weird things still use it, but I think I can swap this button out without breaking anything. This will let us do "New Feature Request" / "New Bug" / "Advanced Task Creation" on secure and start playing with this stuff sooner.

Test Plan: Clicked "Create Task", got sent to new form.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T9132

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

+3 -5
+3 -5
src/applications/maniphest/controller/ManiphestController.php
··· 30 30 protected function buildApplicationCrumbs() { 31 31 $crumbs = parent::buildApplicationCrumbs(); 32 32 33 - $crumbs->addAction( 34 - id(new PHUIListItemView()) 35 - ->setName(pht('Create Task')) 36 - ->setHref($this->getApplicationURI('task/create/')) 37 - ->setIcon('fa-plus-square')); 33 + id(new ManiphestEditEngine()) 34 + ->setViewer($this->getViewer()) 35 + ->addActionToCrumbs($crumbs); 38 36 39 37 return $crumbs; 40 38 }