public function processSave()
 {
     return parent::processSave();
 }
Beispiel #2
0
 public function processSave()
 {
     if (!Module::isInstalled('agilemultipleseller')) {
         return parent::processSave();
     }
     if (!$this->can_edit()) {
         $this->errors[] = Tools::displayError('You do not have permission to access this data');
         return false;
     }
     return parent::processSave();
 }