Пример #1
0
 /**
  * It makes sure the slug is unique
  *
  * @param string $text
  * @param string fieldName (in this form: pc_blog_post.CONTENT)
  * @return string
  */
 public static function slugifyWithUniqueness($text, $fieldName)
 {
     $i = 0;
     do {
         $slug = self::slugify($text);
         if ($i > 0) {
             $slug = $slug . '-' . $i;
         }
         // check whether the slug is unique
         $c = new Criteria();
         $c->add($fieldName, $slug);
         $slugs = PcBlogPostPeer::doSelect($c);
         $i++;
     } while (count($slugs) > 0);
     return $slug;
 }
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(PcBlogPostPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(PcBlogPostPeer::DATABASE_NAME);
         $criteria->add(PcBlogPostPeer::ID, $pks, Criteria::IN);
         $objs = PcBlogPostPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Пример #3
0
 /**
  * Gets an array of PcBlogPost objects which contain a foreign key that references this object.
  *
  * If this collection has already been initialized with an identical Criteria, it returns the collection.
  * Otherwise if this PcUser has previously been saved, it will retrieve
  * related PcBlogPosts from storage. If this PcUser is new, it will return
  * an empty collection or the current collection, the criteria is ignored on a new object.
  *
  * @param      PropelPDO $con
  * @param      Criteria $criteria
  * @return     array PcBlogPost[]
  * @throws     PropelException
  */
 public function getPcBlogPosts($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(PcUserPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collPcBlogPosts === null) {
         if ($this->isNew()) {
             $this->collPcBlogPosts = array();
         } else {
             $criteria->add(PcBlogPostPeer::USER_ID, $this->id);
             PcBlogPostPeer::addSelectColumns($criteria);
             $this->collPcBlogPosts = PcBlogPostPeer::doSelect($criteria, $con);
         }
     } else {
         // criteria has no effect for a new object
         if (!$this->isNew()) {
             // the following code is to determine if a new query is
             // called for.  If the criteria is the same as the last
             // one, just return the collection.
             $criteria->add(PcBlogPostPeer::USER_ID, $this->id);
             PcBlogPostPeer::addSelectColumns($criteria);
             if (!isset($this->lastPcBlogPostCriteria) || !$this->lastPcBlogPostCriteria->equals($criteria)) {
                 $this->collPcBlogPosts = PcBlogPostPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastPcBlogPostCriteria = $criteria;
     return $this->collPcBlogPosts;
 }