예제 #1
0
 /**
  * @param  string $feature
  * @return string
  */
 public function isFeatureEnabled($feature)
 {
     if ($this->_config->getStoreConfig('cfg/' . $feature) == 0) {
         return __('Disabled');
     }
     return __('Enabled');
 }