@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
at upstream/main 67 lines 1.1 kB view raw
1<?php 2 3abstract class PHUIFormationColumnView 4 extends AphrontAutoIDView { 5 6 private $item; 7 private $isDesktopOnly; 8 9 final public function setColumnItem(PHUIFormationColumnItem $item) { 10 $this->item = $item; 11 return $this; 12 } 13 14 final public function getColumnItem() { 15 return $this->item; 16 } 17 18 public function getWidth() { 19 return null; 20 } 21 22 public function getIsResizable() { 23 return false; 24 } 25 26 public function getIsVisible() { 27 return true; 28 } 29 30 public function getIsControlColumn() { 31 return false; 32 } 33 34 public function getVisibleSettingKey() { 35 return null; 36 } 37 38 public function getWidthSettingKey() { 39 return null; 40 } 41 42 public function getMinimumWidth() { 43 return null; 44 } 45 46 public function getMaximumWidth() { 47 return null; 48 } 49 50 public function newClientProperties() { 51 return null; 52 } 53 54 public function getExpanderTooltip() { 55 return null; 56 } 57 58 public function setIsDesktopOnly($is_desktop_only) { 59 $this->isDesktopOnly = $is_desktop_only; 60 return $this; 61 } 62 63 public function getIsDesktopOnly() { 64 return $this->isDesktopOnly; 65 } 66 67}