protected function checkBeforeSave(Pap_Common_Campaign $row, Gpf_Rpc_Form $form, $operationType) { /** $this->checkCampaignValidity($row, $form, $operationType); */ if($row->getIsDefault() && $row->get('rstatus') <> Pap_Db_Campaign::CAMPAIGN_STATUS_ACTIVE) { throw new Gpf_Exception($this->_("Error, you cannot deactivate Default campaign")); } if($row->get('rstatus') == "") { throw new Gpf_Exception($this->_("You have to specify status of campaign (rstatus field)")); } /* if ($row->getIsDefault() || $row->getCampaignType() == null) { if ($form->existsField('rtype') && $form->getFieldValue('rtype') != Pap_Db_Campaign::CAMPAIGN_TYPE_PUBLIC) { throw new Gpf_Exception($this->_("Type of default campaign must be public")); } } */ if ($row->getDateInserted() == null || $row->getDateInserted() == '') { $row->setDateInserted(Gpf_Common_DateUtils::now()); } if (!$form->existsField('accountid') || $form->getFieldValue('accountid') == '') { $row->set("accountid", Gpf_Session::getAuthUser()->getAccountId()); } return true; }