Example #1
0
 /**
  * @param $ID id of the FQDN
  *
  * @return the FQDN of the element, or "" if invalid FQDN
  **/
 static function getFQDNFromID($ID)
 {
     $thisDomain = new self();
     if ($thisDomain->getFromDB($ID)) {
         return $thisDomain->getFQDN();
     }
     return "";
 }