Login.php 756 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * @package Net_EPP
  4. */
  5. class Net_EPP_Frame_Command_Login extends Net_EPP_Frame_Command {
  6. function __construct() {
  7. parent::__construct('login');
  8. $this->clID = $this->createElement('clID');
  9. $this->command->appendChild($this->clID);
  10. $this->pw = $this->createElement('pw');
  11. $this->command->appendChild($this->pw);
  12. $this->options = $this->createElement('options');
  13. $this->command->appendChild($this->options);
  14. $this->eppVersion = $this->createElement('version');
  15. $this->options->appendChild($this->eppVersion);
  16. $this->eppLang = $this->createElement('lang');
  17. $this->options->appendChild($this->eppLang);
  18. $this->svcs = $this->createElement('svcs');
  19. $this->command->appendChild($this->svcs);
  20. }
  21. }
  22. ?>