Changeset View
Changeset View
Standalone View
Standalone View
src/view/formation/PHUIFormationResizerView.php
- This file was added.
| <?php | |||||
| final class PHUIFormationResizerView | |||||
| extends PHUIFormationColumnView { | |||||
| private $isVisible; | |||||
| public function setIsVisible($is_visible) { | |||||
| $this->isVisible = $is_visible; | |||||
| return $this; | |||||
| } | |||||
| public function getIsVisible() { | |||||
| return $this->isVisible; | |||||
| } | |||||
| public function getWidth() { | |||||
| return 8; | |||||
| } | |||||
| public function render() { | |||||
| $width = $this->getWidth(); | |||||
| $style = sprintf('width: %dpx;', $width); | |||||
| return phutil_tag( | |||||
| 'div', | |||||
| array( | |||||
| 'id' => $this->getID(), | |||||
| 'class' => 'phui-formation-resizer', | |||||
| 'style' => $style, | |||||
| )); | |||||
| } | |||||
| } | |||||