Page MenuHomestyx hydra

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
Wed, Nov 26, 8:47 PM (9 h, 19 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
379010
Default Alt Text
PHUIFormationResizerView.php (606 B)

Event Timeline