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

Enable hovercards for the "Task Graph" UI in Maniphest

Summary: See PHI118. Enables hovercards to support peeking at tags and other details if you, e.g., create numerous identical subtasks of each task.

Test Plan: {F5210816}

Reviewers: amckinley

Reviewed By: amckinley

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

+8 -5
+8 -5
src/infrastructure/graph/ManiphestTaskGraph.php
··· 27 27 protected function newTableRow($phid, $object, $trace) { 28 28 $viewer = $this->getViewer(); 29 29 30 + Javelin::initBehavior('phui-hovercards'); 31 + 30 32 if ($object) { 31 33 $status = $object->getStatus(); 32 34 $priority = $object->getPriority(); ··· 51 53 $assigned = phutil_tag('em', array(), pht('None')); 52 54 } 53 55 54 - $full_title = $object->getTitle(); 55 - 56 - $link = phutil_tag( 56 + $link = javelin_tag( 57 57 'a', 58 58 array( 59 59 'href' => $object->getURI(), 60 - 'title' => $full_title, 60 + 'sigil' => 'hovercard', 61 + 'meta' => array( 62 + 'hoverPHID' => $object->getPHID(), 63 + ), 61 64 ), 62 - $full_title); 65 + $object->getTitle()); 63 66 64 67 $link = array( 65 68 phutil_tag(