Exemplo n.º 1
0
 /**
  * Get the associated AppBlogsBlogs object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     AppBlogsBlogs The associated AppBlogsBlogs object.
  * @throws     PropelException
  */
 public function getAppBlogsBlogs(PropelPDO $con = null)
 {
     if ($this->aAppBlogsBlogs === null && $this->blog_id !== null) {
         $this->aAppBlogsBlogs = AppBlogsBlogsPeer::retrieveByPk($this->blog_id);
         /* 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->aAppBlogsBlogs->addAppBlogsPagess($this);
         		 */
     }
     return $this->aAppBlogsBlogs;
 }