| 1234567891011121314151617181920 |
- <?php
- /**
- * @package Net_EPP
- */
- class Net_EPP_Frame_Command_Transfer_Domain extends Net_EPP_Frame_Command_Transfer {
- function __construct() {
- parent::__construct('domain');
- }
- function setPeriod($period, $units='y') {
- $el = $this->createObjectPropertyElement('period');
- $el->setAttribute('unit', $units);
- $el->appendChild($this->createTextNode($period));
- $this->payload->appendChild($el);
- }
- }
- ?>
|