Overview

Packages

  • ClipIt
    • clipit
      • api
    • urjc
      • backend
  • Elgg
    • Core
      • Access
      • Authentication
      • Cache
      • Caches
      • Core
      • DataMode
        • Site
      • DataModel
        • Annotations
        • Entities
        • Extender
        • File
        • Importable
        • Loggable
        • Notable
        • Object
        • User
      • DataStorage
      • Exception
      • Exceptions
        • Stub
      • FileStore
        • Disk
      • Groups
      • Helpers
      • HMAC
      • Memcache
      • Metadata
      • Navigation
      • ODD
      • Output
      • Plugins
        • Settings
      • Sessions
      • SocialModel
        • Friendable
        • Locatable
      • WebServicesAPI
      • Widgets
      • XML
      • XMLRPC
    • Exceptions
      • Stub
  • None
  • PHP

Classes

  • ElggXMLElement
  • XmlElement
  • Overview
  • Package
  • Class
  • Tree
 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: 
API documentation generated by ApiGen 2.8.0