コード例 #1
0
ファイル: Vhost.php プロジェクト: jeboehm/lampcp
 /**
  * Is PHP enabled?
  *
  * @return bool
  */
 public function getPHPEnabled()
 {
     if ($this->getRedirectUrl() != '') {
         return false;
     }
     if ($this->isSubDomain()) {
         $enabled = $this->subdomain->getParsePhp();
     } else {
         $enabled = $this->domain->getParsePhp();
     }
     return $enabled;
 }