XmlElement.php 321 B

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