ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
Empty.php
Go to the documentation of this file.
1<?php
2
11{
15 public $allow_empty = true;
16
20 public $type = 'empty';
21
22 public function __construct()
23 {
24 }
25
32 public function validateChildren($children, $config, $context)
33 {
34 return array();
35 }
36}
37
38// vim: et sw=4 sts=4
Definition that disallows all elements.
Definition: Empty.php:11
validateChildren($children, $config, $context)
Definition: Empty.php:32
Defines allowed child nodes and validates nodes against it.
Definition: ChildDef.php:7