123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- class ODDEntity extends ODD {
-
- function __construct($uuid, $class, $subclass = "") {
- parent::__construct();
- $this->setAttribute('uuid', $uuid);
- $this->setAttribute('class', $class);
- $this->setAttribute('subclass', $subclass);
- }
-
- protected function getTagName() {
- return "entity";
- }
- }
|