| 1 | <?php |
||
| 8 | class Contact extends ContactCreate implements ExtensionInterface |
||
| 9 | { |
||
| 10 | protected $extension = 'extcon'; |
||
| 11 | protected $extension_xmlns = 'http://www.dns.pl/nask-epp-schema/extcon-2.0'; |
||
| 12 | |||
| 13 | public function getExtensionNamespace() |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Set entity type of contact |
||
| 20 | * |
||
| 21 | * @param bool $individual True if person, false if company |
||
| 22 | */ |
||
| 23 | public function setIndividual($individual = false) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Set consent for publishing |
||
| 30 | * |
||
| 31 | * Don't use |
||
| 32 | * |
||
| 33 | * Ignored since 6.1.19 |
||
| 34 | * Up until 6.1.19 this HAD to be true if Individual was to be False |
||
| 35 | * |
||
| 36 | * @deprecated Since NASK registry 6.1.19, removed in registry 6.2.1 |
||
| 37 | * |
||
| 38 | * @param bool $consent |
||
| 39 | */ |
||
| 40 | public function setConsentForPublishing($consent = false) |
||
| 44 | } |
||
| 45 |