|
@@ -219,6 +219,29 @@ class Profile implements TenancyIdTraitInterface
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * @return string
|
|
|
+ */
|
|
|
+ public function getSipDevProxyServer()
|
|
|
+ {
|
|
|
+ return $this->getData('sipDevProxyServer') ? $this->getData('sipDevProxyServer') : $this->getDefault('sipDevProxyServer');
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @return string
|
|
|
+ */
|
|
|
+ public function getServerVoIP_IP()
|
|
|
+ {
|
|
|
+ return $this->getData('ServerVoIP_IP') ? $this->getData('ServerVoIP_IP') : $this->getDefault('ServerVoIP_IP');
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @return string
|
|
|
+ */
|
|
|
+ public function getSipDevRegistrar()
|
|
|
+ {
|
|
|
+ return $this->getData('sipDevRegistrar') ? $this->getData('sipDevRegistrar') : $this->getDefault('sipDevRegistrar');
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* @param string $name
|