/** * Returns a new ChildUserAttributesQuery object. * * @param string $modelAlias The alias of a model in the query * @param Criteria $criteria Optional Criteria to build the query from * * @return ChildUserAttributesQuery */ public static function create($modelAlias = null, Criteria $criteria = null) { if ($criteria instanceof ChildUserAttributesQuery) { return $criteria; } $query = new ChildUserAttributesQuery(); if (null !== $modelAlias) { $query->setModelAlias($modelAlias); } if ($criteria instanceof Criteria) { $query->mergeWith($criteria); } return $query; }
/** * Builds a Criteria object containing the primary key for this object. * * Unlike buildCriteria() this method includes the primary key values regardless * of whether or not they have been modified. * * @throws LogicException if no primary key is defined * * @return Criteria The Criteria object containing value(s) for primary key(s). */ public function buildPkeyCriteria() { $criteria = ChildUserAttributesQuery::create(); $criteria->add(UserAttributesTableMap::COL_IDUSER_ATTRIBUTES, $this->iduser_attributes); return $criteria; }
/** * Builds a Criteria object containing the primary key for this object. * * Unlike buildCriteria() this method includes the primary key values regardless * of whether or not they have been modified. * * @throws LogicException if no primary key is defined * * @return Criteria The Criteria object containing value(s) for primary key(s). */ public function buildPkeyCriteria() { $criteria = ChildUserAttributesQuery::create(); $criteria->add(UserAttributesTableMap::COL_ID, $this->id); return $criteria; }
/** * Get the associated ChildUserAttributes object * * @param ConnectionInterface $con Optional Connection object. * @return ChildUserAttributes The associated ChildUserAttributes object. * @throws PropelException */ public function getUserAttributes(ConnectionInterface $con = null) { if ($this->aUserAttributes === null && $this->user_attributes_iduser_attributes !== null) { $this->aUserAttributes = ChildUserAttributesQuery::create()->findPk($this->user_attributes_iduser_attributes, $con); /* The following can be used additionally to guarantee the related object contains a reference to this object. This level of coupling may, however, be undesirable since it could result in an only partially populated collection in the referenced object. $this->aUserAttributes->addFileMetas($this); */ } return $this->aUserAttributes; }