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

at upstream/main 34 lines 568 B view raw
1<?php 2 3final class PhabricatorProjectColumnTitleOrder 4 extends PhabricatorProjectColumnOrder { 5 6 const ORDERKEY = 'title'; 7 8 public function getDisplayName() { 9 return pht('Sort by Title'); 10 } 11 12 protected function newMenuIconIcon() { 13 return 'fa-sort-alpha-asc'; 14 } 15 16 public function getHasHeaders() { 17 return false; 18 } 19 20 public function getCanReorder() { 21 return false; 22 } 23 24 public function getMenuOrder() { 25 return 7000; 26 } 27 28 protected function newSortVectorForObject($object) { 29 return array( 30 $object->getTitle(), 31 ); 32 } 33 34}