Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/view/formation/PHUIFormationColumnDynamicView.php
12249 views
1
<?php
2
3
abstract class PHUIFormationColumnDynamicView
4
extends PHUIFormationColumnView {
5
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;
14
15
public function setExpanderTooltip($expander_tooltip) {
16
$this->expanderTooltip = $expander_tooltip;
17
return $this;
18
}
19
20
public function getExpanderTooltip() {
21
return $this->expanderTooltip;
22
}
23
24
public function setIsVisible($is_visible) {
25
$this->isVisible = $is_visible;
26
return $this;
27
}
28
29
public function getIsVisible() {
30
return $this->isVisible;
31
}
32
33
public function setIsResizable($is_resizable) {
34
$this->isResizable = $is_resizable;
35
return $this;
36
}
37
38
public function getIsResizable() {
39
return $this->isResizable;
40
}
41
42
public function setWidth($width) {
43
$this->width = $width;
44
return $this;
45
}
46
47
public function getWidth() {
48
return $this->width;
49
}
50
51
public function setWidthSettingKey($width_setting_key) {
52
$this->widthSettingKey = $width_setting_key;
53
return $this;
54
}
55
56
public function getWidthSettingKey() {
57
return $this->widthSettingKey;
58
}
59
60
public function setVisibleSettingKey($visible_setting_key) {
61
$this->visibleSettingKey = $visible_setting_key;
62
return $this;
63
}
64
65
public function getVisibleSettingKey() {
66
return $this->visibleSettingKey;
67
}
68
69
public function setMinimumWidth($minimum_width) {
70
$this->minimumWidth = $minimum_width;
71
return $this;
72
}
73
74
public function getMinimumWidth() {
75
return $this->minimumWidth;
76
}
77
78
public function setMaximumWidth($maximum_width) {
79
$this->maximumWidth = $maximum_width;
80
return $this;
81
}
82
83
public function getMaximumWidth() {
84
return $this->maximumWidth;
85
}
86
87
}
88
89