public function addFeaturesStatus($type, $value = 1)
 {
     $newFeatureStatus = new kFeatureStatus();
     $newFeatureStatus->setType($type);
     $newFeatureStatus->setValue($value);
     $featuresStatus = $this->getFeaturesStatus();
     $featuresStatus[$newFeatureStatus->getType()] = $newFeatureStatus;
     $this->setFeaturesStatus($featuresStatus);
     $this->save();
 }