serverHostname() protected method

Returns 'localhost.localdomain' if unknown.
protected serverHostname ( ) : string
return string
Example #1
0
 /**
  * Get the server hostname.
  * Returns the host part of the wwwroot.
  *
  * @access protected
  * @return string
  */
 protected function serverHostname()
 {
     global $CFG;
     $hostname = parent::serverHostname();
     if ($hostname === 'localhost.localdomain') {
         $urlinfo = parse_url($CFG->wwwroot);
         $hostname = $urlinfo['host'];
     }
     return $hostname;
 }