Greeting.php 542 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * @package Net_EPP
  4. */
  5. final class Net_EPP_Frame_Greeting extends Net_EPP_Frame {
  6. function __construct() {
  7. parent::__construct('greeting');
  8. $this->svID = $this->createElement('svID');
  9. $this->body->appendChild($this->svID);
  10. $this->svDate = $this->createElement('svDate');
  11. $this->body->appendChild($this->svDate);
  12. $this->svcMenu = $this->createElement('svcMenu');
  13. $this->body->appendChild($this->svcMenu);
  14. $this->dcp = $this->createElement('dcp');
  15. $this->body->appendChild($this->dcp);
  16. }
  17. }
  18. ?>