Exemplo n.º 1
0
 public function preInsert(PropelPDO $con = null)
 {
     //Validate max assets limitation was not reached before doing insert
     $partner = PartnerPeer::retrieveByPK($this->getPartnerId());
     if ($partner) {
         $assetPerEntryLimitation = $partner->getAssetsPerEntryLimitation();
     }
     if (!isset($assetPerEntryLimitation) || $assetPerEntryLimitation == false) {
         $assetPerEntryLimitation = self::MAX_ASSETS_PER_ENTRY;
     }
     $assetsCount = assetPeer::countByEntryId($this->entry_id);
     if ($assetsCount + 1 > $assetPerEntryLimitation) {
         throw new kCoreException("Max number of allowed assets per entry was reached", kCoreException::MAX_ASSETS_PER_ENTRY);
     }
     return parent::preInsert();
 }