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 $visibleSettingKey; | |||||
| private $minimumWidth; | |||||
| private $maximumWidth; | |||||
| 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 All 12 Lines | public function setWidth($width) { | ||||
| $this->width = $width; | $this->width = $width; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getWidth() { | public function getWidth() { | ||||
| return $this->width; | return $this->width; | ||||
| } | } | ||||
| public function setWidthSettingKey($width_setting_key) { | |||||
| $this->widthSettingKey = $width_setting_key; | |||||
| return $this; | |||||
| } | |||||
| public function getWidthSettingKey() { | |||||
| return $this->widthSettingKey; | |||||
| } | |||||
| public function setVisibleSettingKey($visible_setting_key) { | |||||
| $this->visibleSettingKey = $visible_setting_key; | |||||
| return $this; | |||||
| } | |||||
| public function getVisibleSettingKey() { | |||||
| return $this->visibleSettingKey; | |||||
| } | |||||
| public function setMinimumWidth($minimum_width) { | |||||
| $this->minimumWidth = $minimum_width; | |||||
| return $this; | |||||
| } | |||||
| public function getMinimumWidth() { | |||||
| return $this->minimumWidth; | |||||
| } | |||||
| public function setMaximumWidth($maximum_width) { | |||||
| $this->maximumWidth = $maximum_width; | |||||
| return $this; | |||||
| } | |||||
| public function getMaximumWidth() { | |||||
| return $this->maximumWidth; | |||||
| } | |||||
| } | } | ||||