huge fml update

This commit is contained in:
Steffen Schröder
2014-01-19 19:30:21 +01:00
parent 9654b26f2b
commit 771409b8eb
66 changed files with 2303 additions and 134 deletions

View File

@ -5,7 +5,7 @@ namespace FML\Controls;
use FML\Types\Renderable;
/**
* Base Control Element
* Base Control
* (CMlControl)
*
* @author steeffeen
@ -43,7 +43,9 @@ abstract class Control implements Renderable {
* @param string $id (optional) Control Id
*/
public function __construct($id = null) {
$this->setId($id);
if ($id !== null) {
$this->setId($id);
}
}
/**