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

Update PhortuneLanding page UI

Summary: Minor, uses 'user-circle' for account, and merchant logo for merchants in lists.

Test Plan: View the landing page, see updated logos and icons.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+3 -2
+3 -2
src/applications/phortune/controller/account/PhortuneAccountListController.php
··· 18 18 $merchants = id(new PhortuneMerchantQuery()) 19 19 ->setViewer($viewer) 20 20 ->withMemberPHIDs(array($viewer->getPHID())) 21 + ->needProfileImage(true) 21 22 ->execute(); 22 23 23 24 $title = pht('Accounts'); ··· 39 40 ->setHeader($account->getName()) 40 41 ->setHref($this->getApplicationURI($account->getID().'/')) 41 42 ->setObject($account) 42 - ->setImageIcon('fa-credit-card'); 43 + ->setImageIcon('fa-user-circle'); 43 44 44 45 $payment_list->addItem($item); 45 46 } ··· 71 72 ->setHeader($merchant->getName()) 72 73 ->setHref($this->getApplicationURI('/merchant/'.$merchant->getID().'/')) 73 74 ->setObject($merchant) 74 - ->setImageIcon('fa-bank'); 75 + ->setImageURI($merchant->getProfileImageURI()); 75 76 76 77 $merchant_list->addItem($item); 77 78 }