2014-01-19 19:30:21 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace FML\Elements;
|
|
|
|
|
|
|
|
use FML\Controls\Control;
|
|
|
|
use FML\Types\Container;
|
|
|
|
use FML\Types\Renderable;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class representing a Frame Model
|
|
|
|
*
|
|
|
|
* @author steeffeen
|
|
|
|
*/
|
|
|
|
class FrameModel implements Container, Renderable {
|
2014-01-21 20:30:40 +01:00
|
|
|
/*
|
2014-01-19 19:30:21 +01:00
|
|
|
* Protected Properties
|
|
|
|
*/
|
|
|
|
protected $tagName = 'framemodel';
|
|
|
|
protected $id = '';
|
|
|
|
protected $children = array();
|
|
|
|
protected $format = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set Model Id
|
|
|
|
*
|
|
|
|
* @param string $id Model Id
|
|
|
|
* @return \FML\Elements\FrameModel
|
|
|
|
*/
|
|
|
|
public function setId($id) {
|
|
|
|
$this->id = (string) $id;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get Model Id
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getId() {
|
|
|
|
return $this->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Assign an Id if necessary
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function checkId() {
|
|
|
|
if (!$this->id) {
|
|
|
|
$this->id = uniqid();
|
|
|
|
}
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @see \FML\Types\Container::add()
|
|
|
|
* @return \FML\Elements\FrameModel
|
|
|
|
*/
|
|
|
|
public function add(Control $childControl) {
|
|
|
|
if (!in_array($childControl, $this->children, true)) {
|
|
|
|
array_push($this->children, $childControl);
|
|
|
|
}
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @see \FML\Types\Container::removeChildren()
|
|
|
|
* @return \FML\Elements\FrameModel
|
|
|
|
*/
|
|
|
|
public function removeChildren() {
|
|
|
|
$this->children = array();
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @see \FML\Types\Container::setFormat()
|
|
|
|
* @return \FML\Elements\FrameModel
|
|
|
|
*/
|
|
|
|
public function setFormat(Format $format) {
|
|
|
|
$this->format = $format;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @see \FML\Types\Container::getFormat()
|
|
|
|
*/
|
|
|
|
public function getFormat($createIfEmpty = true) {
|
|
|
|
if (!$this->format && $createIfEmpty) {
|
|
|
|
$this->format = new Format();
|
|
|
|
}
|
|
|
|
return $this->format;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @see \FML\Types\Renderable::render()
|
|
|
|
*/
|
|
|
|
public function render(\DOMDocument $domDocument) {
|
|
|
|
$xmlElement = $domDocument->createElement($this->tagName);
|
|
|
|
$this->checkId();
|
|
|
|
$xmlElement->setAttribute('id', $this->getId());
|
|
|
|
if ($this->format) {
|
|
|
|
$formatXml = $this->format->render($domDocument);
|
|
|
|
$xmlElement->appendChild($formatXml);
|
|
|
|
}
|
|
|
|
foreach ($this->children as $child) {
|
|
|
|
$childElement = $child->render($domDocument);
|
|
|
|
$xmlElement->appendChild($childElement);
|
|
|
|
}
|
|
|
|
return $xmlElement;
|
|
|
|
}
|
|
|
|
}
|