3 abstract class PHUIFormationColumnDynamicView
4 extends PHUIFormationColumnView
{
6 private $isVisible = true;
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;
20 public function getExpanderTooltip() {
21 return $this->expanderTooltip
;
24 public function setIsVisible($is_visible) {
25 $this->isVisible
= $is_visible;
29 public function getIsVisible() {
30 return $this->isVisible
;
33 public function setIsResizable($is_resizable) {
34 $this->isResizable
= $is_resizable;
38 public function getIsResizable() {
39 return $this->isResizable
;
42 public function setWidth($width) {
43 $this->width
= $width;
47 public function getWidth() {
51 public function setWidthSettingKey($width_setting_key) {
52 $this->widthSettingKey
= $width_setting_key;
56 public function getWidthSettingKey() {
57 return $this->widthSettingKey
;
60 public function setVisibleSettingKey($visible_setting_key) {
61 $this->visibleSettingKey
= $visible_setting_key;
65 public function getVisibleSettingKey() {
66 return $this->visibleSettingKey
;
69 public function setMinimumWidth($minimum_width) {
70 $this->minimumWidth
= $minimum_width;
74 public function getMinimumWidth() {
75 return $this->minimumWidth
;
78 public function setMaximumWidth($maximum_width) {
79 $this->maximumWidth
= $maximum_width;
83 public function getMaximumWidth() {
84 return $this->maximumWidth
;