@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 Priority to Maniphest Hovercard

Summary: Fixes T5524, adds priority to Maniphest's hovercard. Also fixes Blocking language.

Test Plan: Hover over a task, see new stuff.

Reviewers: lpriestley, epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T5524

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

+5 -2
+5 -2
src/applications/maniphest/event/ManiphestHovercardEventListener.php
··· 53 53 $owner = phutil_tag('em', array(), pht('None')); 54 54 } 55 55 $hovercard->addField(pht('Assigned To'), $owner); 56 + $hovercard->addField( 57 + pht('Priority'), 58 + ManiphestTaskPriority::getTaskPriorityName($task->getPriority())); 56 59 57 60 if ($edge_phids) { 58 61 $edge_types = array( 59 62 $e_project => pht('Projects'), 60 - $e_dep_by => pht('Dependent Tasks'), 61 - $e_dep_on => pht('Depends On'), 63 + $e_dep_by => pht('Blocks'), 64 + $e_dep_on => pht('Blocked By'), 62 65 ); 63 66 64 67 $max_count = 6;