Elgg  Version 2.3
XmlElement.php
Go to the documentation of this file.
1 <?php
9 class XmlElement {
11  public $name;
12 
14  public $attributes;
15 
17  public $content;
18 
20  public $children;
21 };
$name
The name of the element.
Definition: XmlElement.php:11
$attributes
The attributes.
Definition: XmlElement.php:14
$content
CData.
Definition: XmlElement.php:17
$children
Child elements.
Definition: XmlElement.php:20