private function getEnabled(Gpf_File_Config $themeConfigFile)
 {
     if ($themeConfigFile->hasSetting(Gpf_Desktop_Theme::ENABLED)) {
         return $themeConfigFile->getSetting(Gpf_Desktop_Theme::ENABLED) == 'Y';
     }
     return true;
 }
Esempio n. 2
0
 private function isBuiltIn()
 {
     if ($this->configFile->hasSetting(self::BUILT_IN)) {
         return $this->configFile->getSetting(self::BUILT_IN) == 'Y';
     }
     return false;
 }