Page MenuHomePhorge

PHUIFormationResizerView.php
No OneTemporary

PHUIFormationResizerView.php

<?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,
));
}
}

File Metadata

Mime Type
text/x-php
Expires
Jan 19 2025, 12:10 (4 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1124419
Default Alt Text
PHUIFormationResizerView.php (606 B)

Event Timeline