2011-01-16 13:51:39 -08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
abstract class AphrontView {
|
|
|
|
|
|
|
|
protected $children = array();
|
|
|
|
|
|
|
|
final public function appendChild($child) {
|
|
|
|
$this->children[] = $child;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
final protected function renderChildren() {
|
|
|
|
$out = array();
|
|
|
|
foreach ($this->children as $child) {
|
2011-03-12 16:17:34 -08:00
|
|
|
$out[] = $this->renderSingleView($child);
|
2011-01-16 13:51:39 -08:00
|
|
|
}
|
|
|
|
return implode('', $out);
|
|
|
|
}
|
|
|
|
|
2011-03-12 16:17:34 -08:00
|
|
|
final protected function renderSingleView($child) {
|
2011-01-16 13:51:39 -08:00
|
|
|
if ($child instanceof AphrontView) {
|
|
|
|
return $child->render();
|
|
|
|
} else if (is_array($child)) {
|
|
|
|
$out = array();
|
|
|
|
foreach ($child as $element) {
|
2011-03-12 16:17:34 -08:00
|
|
|
$out[] = $this->renderSingleView($element);
|
2011-01-16 13:51:39 -08:00
|
|
|
}
|
|
|
|
return implode('', $out);
|
|
|
|
} else {
|
|
|
|
return $child;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
abstract public function render();
|
|
|
|
|
2012-10-03 11:07:56 -07:00
|
|
|
public function __set($name, $value) {
|
|
|
|
phlog('Wrote to undeclared property '.get_class($this).'::$'.$name.'.');
|
|
|
|
$this->$name = $value;
|
|
|
|
}
|
|
|
|
|
2011-01-16 13:51:39 -08:00
|
|
|
}
|