Path: blob/master/src/view/formation/PHUIFormationColumnDynamicView.php
12249 views
<?php12abstract class PHUIFormationColumnDynamicView3extends PHUIFormationColumnView {45private $isVisible = true;6private $isResizable;7private $width;8private $widthSettingKey;9private $visibleSettingKey;10private $minimumWidth;11private $maximumWidth;12private $expanderTooltip;1314public function setExpanderTooltip($expander_tooltip) {15$this->expanderTooltip = $expander_tooltip;16return $this;17}1819public function getExpanderTooltip() {20return $this->expanderTooltip;21}2223public function setIsVisible($is_visible) {24$this->isVisible = $is_visible;25return $this;26}2728public function getIsVisible() {29return $this->isVisible;30}3132public function setIsResizable($is_resizable) {33$this->isResizable = $is_resizable;34return $this;35}3637public function getIsResizable() {38return $this->isResizable;39}4041public function setWidth($width) {42$this->width = $width;43return $this;44}4546public function getWidth() {47return $this->width;48}4950public function setWidthSettingKey($width_setting_key) {51$this->widthSettingKey = $width_setting_key;52return $this;53}5455public function getWidthSettingKey() {56return $this->widthSettingKey;57}5859public function setVisibleSettingKey($visible_setting_key) {60$this->visibleSettingKey = $visible_setting_key;61return $this;62}6364public function getVisibleSettingKey() {65return $this->visibleSettingKey;66}6768public function setMinimumWidth($minimum_width) {69$this->minimumWidth = $minimum_width;70return $this;71}7273public function getMinimumWidth() {74return $this->minimumWidth;75}7677public function setMaximumWidth($maximum_width) {78$this->maximumWidth = $maximum_width;79return $this;80}8182public function getMaximumWidth() {83return $this->maximumWidth;84}8586}878889