/** * Populates the object using an array. * * This is particularly useful when populating an object from one of the * request arrays (e.g. $_POST). This method goes through the column * names, checking to see whether a matching key exists in populated * array. If so the setByName() method is called for that column. * * You can specify the key type of the array by additionally passing one * of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME, * BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM. * The default key type is the column's phpname (e.g. 'AuthorId') * * @param array $arr An array to populate the object from. * @param string $keyType The type of keys the array uses. * @return void */ public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME) { $keys = HospiciEntitatElementsPeer::getFieldNames($keyType); if (array_key_exists($keys[0], $arr)) { $this->setElementId($arr[$keys[0]]); } if (array_key_exists($keys[1], $arr)) { $this->setTipus($arr[$keys[1]]); } if (array_key_exists($keys[2], $arr)) { $this->setEntitatId($arr[$keys[2]]); } if (array_key_exists($keys[3], $arr)) { $this->setNivell($arr[$keys[3]]); } }
/** * Retrieve object using using composite pkey values. * @param int $element_id * @param string $tipus * @param int $entitat_id * @param PropelPDO $con * @return HospiciEntitatElements */ public static function retrieveByPK($element_id, $tipus, $entitat_id, PropelPDO $con = null) { $key = serialize(array((string) $element_id, (string) $tipus, (string) $entitat_id)); if (null !== ($obj = HospiciEntitatElementsPeer::getInstanceFromPool($key))) { return $obj; } if ($con === null) { $con = Propel::getConnection(HospiciEntitatElementsPeer::DATABASE_NAME, Propel::CONNECTION_READ); } $criteria = new Criteria(HospiciEntitatElementsPeer::DATABASE_NAME); $criteria->add(HospiciEntitatElementsPeer::ELEMENT_ID, $element_id); $criteria->add(HospiciEntitatElementsPeer::TIPUS, $tipus); $criteria->add(HospiciEntitatElementsPeer::ENTITAT_ID, $entitat_id); $v = HospiciEntitatElementsPeer::doSelect($criteria, $con); return !empty($v) ? $v[0] : null; }