/**
  * @return \stdClass
  */
 public function getOverrides()
 {
     try {
         return $this->globalConfiguration->getConfigOption(['applications', $this->getName(), 'overrides']);
     } catch (MissingConfigurationParameterException $ex) {
         return new \stdClass();
     }
 }
예제 #2
0
 public function isDisabled()
 {
     try {
         return $this->globalConfiguration->getConfigOption(['vhosts', $this->getName(), 'disabled']);
     } catch (MissingConfigurationParameterException $ex) {
         return false;
     }
 }