/** * Get the associated Meta object * * @param PropelPDO Optional Connection object. * @return Meta The associated Meta object. * @throws PropelException */ public function getMeta(PropelPDO $con = null) { if ($this->aMeta === null && $this->meta_id !== null) { $c = new Criteria(MetaPeer::DATABASE_NAME); $c->add(MetaPeer::ID, $this->meta_id); $this->aMeta = MetaPeer::doSelectOne($c, $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->aMeta->addPagess($this); */ } return $this->aMeta; }