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

Adding in an edit icon on the action header

Summary: Test flight on Phabricator editing! I mostly looked at other code, thought it was well written and wrote my own code in the other code's image.

Test Plan: Look at icons appearing!

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley

CC: Korvin, epriestley, aran

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

authored by

Mikael Knutsson and committed by
epriestley
a5db959f 5502fca5

+7 -1
+7 -1
src/view/phui/PHUIWorkpanelView.php
··· 42 42 $footer_tag); 43 43 } 44 44 45 + $header_edit = id(new PHUIIconView()) 46 + ->setSpriteSheet(PHUIIconView::SPRITE_ACTIONS) 47 + ->setSpriteIcon('settings-grey') 48 + ->setHref('#'); 49 + 45 50 $header = id(new PhabricatorActionHeaderView()) 46 51 ->setHeaderTitle($this->header) 47 - ->setHeaderColor(PhabricatorActionHeaderView::HEADER_GREY); 52 + ->setHeaderColor(PhabricatorActionHeaderView::HEADER_GREY) 53 + ->addAction($header_edit); 48 54 49 55 $body = phutil_tag( 50 56 'div',