public function doSave($con = null)
 {
     parent::doSave($con);
     $this->object->setCategory($this->getValue('category'));
     $this->object->save();
     $this->object->setDependencies($this->getValue('dependencies'));
     $this->object->setScreenshot($this->getValue('screenshot'));
     $this->object->setScreenshots($this->getValue('screenshots'));
     $this->object->setArbitrarySections($this->getValue('arbitrarySections'));
     $this->object->setTags($this->getValue('tags'));
     $this->object->setGitTags($this->getValue('gitTags'), $this->getValue('stabletag'));
 }