@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 27 lines 507 B view raw
1<?php 2 3final class PhabricatorEditEngineColumnsCommentAction 4 extends PhabricatorEditEngineCommentAction { 5 6 private $columnMap; 7 8 public function setColumnMap(array $column_map) { 9 $this->columnMap = $column_map; 10 return $this; 11 } 12 13 public function getColumnMap() { 14 return $this->columnMap; 15 } 16 17 public function getPHUIXControlType() { 18 return 'optgroups'; 19 } 20 21 public function getPHUIXControlSpecification() { 22 return array( 23 'groups' => $this->getColumnMap(), 24 ); 25 } 26 27}