2011-01-16 22:51:39 +01: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-13 01:17:34 +01:00
|
|
|
$out[] = $this->renderSingleView($child);
|
2011-01-16 22:51:39 +01:00
|
|
|
}
|
|
|
|
return implode('', $out);
|
|
|
|
}
|
|
|
|
|
2011-03-13 01:17:34 +01:00
|
|
|
final protected function renderSingleView($child) {
|
2011-01-16 22:51:39 +01:00
|
|
|
if ($child instanceof AphrontView) {
|
|
|
|
return $child->render();
|
|
|
|
} else if (is_array($child)) {
|
|
|
|
$out = array();
|
|
|
|
foreach ($child as $element) {
|
2011-03-13 01:17:34 +01:00
|
|
|
$out[] = $this->renderSingleView($element);
|
2011-01-16 22:51:39 +01:00
|
|
|
}
|
|
|
|
return implode('', $out);
|
|
|
|
} else {
|
|
|
|
return $child;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
abstract public function render();
|
|
|
|
|
2012-10-03 20:07:56 +02:00
|
|
|
public function __set($name, $value) {
|
|
|
|
phlog('Wrote to undeclared property '.get_class($this).'::$'.$name.'.');
|
|
|
|
$this->$name = $value;
|
|
|
|
}
|
|
|
|
|
2011-01-16 22:51:39 +01:00
|
|
|
}
|