public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME) { $keys = RelUsuarioPreferenciaPeer::getFieldNames($keyType); if (array_key_exists($keys[0], $arr)) { $this->setId($arr[$keys[0]]); } if (array_key_exists($keys[1], $arr)) { $this->setFkUsuarioId($arr[$keys[1]]); } if (array_key_exists($keys[2], $arr)) { $this->setFkPreferenciaId($arr[$keys[2]]); } }
public static function retrieveByPKs($pks, PropelPDO $con = null) { if ($con === null) { $con = Propel::getConnection(RelUsuarioPreferenciaPeer::DATABASE_NAME, Propel::CONNECTION_READ); } $objs = null; if (empty($pks)) { $objs = array(); } else { $criteria = new Criteria(RelUsuarioPreferenciaPeer::DATABASE_NAME); $criteria->add(RelUsuarioPreferenciaPeer::ID, $pks, Criteria::IN); $objs = RelUsuarioPreferenciaPeer::doSelect($criteria, $con); } return $objs; }