diff --git a/includes/class/Zone.php b/includes/class/Zone.php index fc2f57e..f2bccab 100644 --- a/includes/class/Zone.php +++ b/includes/class/Zone.php @@ -10,6 +10,7 @@ class Zone { $this->dnssec = ''; $this->soa_edit = ''; $this->soa_edit_api = ''; + $this->keyinfo = ''; $this->account = ''; $this->nameservers = Array(); $this->rrsets = Array(); @@ -43,6 +44,10 @@ class Zone { array_push($this->rrsets, $toadd); } } + public function setkeyinfo($info) { + $this->keyinfo = $info; + } + public function addnameserver($nameserver) { foreach ($this->nameservers as $ns) { if ($nameserver == $ns) {