| 1 | <?php |
||
| 17 | class ObjectSpec |
||
| 18 | { |
||
| 19 | public $specs = [ |
||
| 20 | 'epp' => [ |
||
| 21 | 'xmlns' => 'urn:ietf:params:xml:ns:epp-1.0', |
||
| 22 | ], |
||
| 23 | 'domain' => [ |
||
| 24 | 'xmlns' => 'urn:ietf:params:xml:ns:domain-1.0', |
||
| 25 | ], |
||
| 26 | 'host' => [ |
||
| 27 | 'xmlns' => 'urn:ietf:params:xml:ns:host-1.0', |
||
| 28 | ], |
||
| 29 | 'contact' => [ |
||
| 30 | 'xmlns' => 'urn:ietf:params:xml:ns:contact-1.0', |
||
| 31 | ], |
||
| 32 | 'secDNS' => [ |
||
| 33 | 'xmlns' => 'urn:ietf:params:xml:ns:secDNS-1.1', |
||
| 34 | ], |
||
| 35 | ]; |
||
| 36 | |||
| 37 | public $mappings = [ |
||
| 38 | 'check', 'create', 'delete', 'info', 'renew', 'transfer', 'update', |
||
| 39 | ]; |
||
| 40 | |||
| 41 | public function xmlns($object) |
||
| 49 | } |
||
| 50 |