1: <?php
2: /**
3: * A class representing an XML element for import.
4: *
5: * @package Elgg.Core
6: * @subpackage XML
7: */
8: class XmlElement {
9: /** The name of the element */
10: public $name;
11:
12: /** The attributes */
13: public $attributes;
14:
15: /** CData */
16: public $content;
17:
18: /** Child elements */
19: public $children;
20: };
21: