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

Reorder workboard menu items

Summary: Adds a divider and better grouping

Test Plan: Click on dropdown menu on a workboard

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+11 -8
+11 -8
src/applications/project/controller/PhabricatorProjectBoardViewController.php
··· 713 713 ->setDisabled(!$can_edit) 714 714 ->setWorkflow(true); 715 715 716 - $background_uri = $this->getApplicationURI("board/{$id}/background/"); 717 - $manage_items[] = id(new PhabricatorActionView()) 718 - ->setIcon('fa-paint-brush') 719 - ->setName(pht('Change Background Color')) 720 - ->setHref($background_uri) 721 - ->setDisabled(!$can_edit) 722 - ->setWorkflow(false); 723 - 724 716 if ($show_hidden) { 725 717 $hidden_uri = $this->getURIWithState() 726 718 ->setQueryParam('hidden', null); ··· 737 729 ->setIcon($hidden_icon) 738 730 ->setName($hidden_text) 739 731 ->setHref($hidden_uri); 732 + 733 + $manage_items[] = id(new PhabricatorActionView()) 734 + ->setType(PhabricatorActionView::TYPE_DIVIDER); 735 + 736 + $background_uri = $this->getApplicationURI("board/{$id}/background/"); 737 + $manage_items[] = id(new PhabricatorActionView()) 738 + ->setIcon('fa-paint-brush') 739 + ->setName(pht('Change Background Color')) 740 + ->setHref($background_uri) 741 + ->setDisabled(!$can_edit) 742 + ->setWorkflow(false); 740 743 741 744 $manage_uri = $this->getApplicationURI("board/{$id}/manage/"); 742 745 $manage_items[] = id(new PhabricatorActionView())