Changeset View
Changeset View
Standalone View
Standalone View
src/view/formation/PHUIFormationColumnDynamicView.php
| <?php | <?php | ||||
| abstract class PHUIFormationColumnDynamicView | abstract class PHUIFormationColumnDynamicView | ||||
| extends PHUIFormationColumnView { | extends PHUIFormationColumnView { | ||||
| private $isVisible = true; | private $isVisible = true; | ||||
| private $isResizable; | private $isResizable; | ||||
| private $width; | private $width; | ||||
| private $widthSettingKey; | private $widthSettingKey; | ||||
| private $visibleSettingKey; | private $visibleSettingKey; | ||||
| private $minimumWidth; | private $minimumWidth; | ||||
| private $maximumWidth; | private $maximumWidth; | ||||
| private $expanderTooltip; | |||||
| public function setExpanderTooltip($expander_tooltip) { | |||||
| $this->expanderTooltip = $expander_tooltip; | |||||
| return $this; | |||||
| } | |||||
| public function getExpanderTooltip() { | |||||
| return $this->expanderTooltip; | |||||
| } | |||||
| public function setIsVisible($is_visible) { | public function setIsVisible($is_visible) { | ||||
| $this->isVisible = $is_visible; | $this->isVisible = $is_visible; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getIsVisible() { | public function getIsVisible() { | ||||
| return $this->isVisible; | return $this->isVisible; | ||||
| ▲ Show 20 Lines • Show All 57 Lines • Show Last 20 Lines | |||||