예제 #1
0
파일: Vhost.php 프로젝트: jeboehm/lampcp
 /**
  * CustomConfig
  *
  * @return string
  */
 public function getCustomConfig()
 {
     if ($this->isSubDomain()) {
         $custom = $this->subdomain->getCustomconfig();
     } else {
         $custom = $this->domain->getCustomconfig();
     }
     return $custom;
 }