Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / view / formation / PHUIFormationColumnDynamicView.php
blob1a3d3bbbbd009993d4af7d5848c5e16543b69dbd
1 <?php
3 abstract class PHUIFormationColumnDynamicView
4 extends PHUIFormationColumnView {
6 private $isVisible = true;
7 private $isResizable;
8 private $width;
9 private $widthSettingKey;
10 private $visibleSettingKey;
11 private $minimumWidth;
12 private $maximumWidth;
13 private $expanderTooltip;
15 public function setExpanderTooltip($expander_tooltip) {
16 $this->expanderTooltip = $expander_tooltip;
17 return $this;
20 public function getExpanderTooltip() {
21 return $this->expanderTooltip;
24 public function setIsVisible($is_visible) {
25 $this->isVisible = $is_visible;
26 return $this;
29 public function getIsVisible() {
30 return $this->isVisible;
33 public function setIsResizable($is_resizable) {
34 $this->isResizable = $is_resizable;
35 return $this;
38 public function getIsResizable() {
39 return $this->isResizable;
42 public function setWidth($width) {
43 $this->width = $width;
44 return $this;
47 public function getWidth() {
48 return $this->width;
51 public function setWidthSettingKey($width_setting_key) {
52 $this->widthSettingKey = $width_setting_key;
53 return $this;
56 public function getWidthSettingKey() {
57 return $this->widthSettingKey;
60 public function setVisibleSettingKey($visible_setting_key) {
61 $this->visibleSettingKey = $visible_setting_key;
62 return $this;
65 public function getVisibleSettingKey() {
66 return $this->visibleSettingKey;
69 public function setMinimumWidth($minimum_width) {
70 $this->minimumWidth = $minimum_width;
71 return $this;
74 public function getMinimumWidth() {
75 return $this->minimumWidth;
78 public function setMaximumWidth($maximum_width) {
79 $this->maximumWidth = $maximum_width;
80 return $this;
83 public function getMaximumWidth() {
84 return $this->maximumWidth;