Exemple #1
0
 /**
  * Returns the number of related AuthToken objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      ConnectionInterface $con
  * @return int             Count of related AuthToken objects.
  * @throws PropelException
  */
 public function countAuthTokens(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
 {
     $partial = $this->collAuthTokensPartial && !$this->isNew();
     if (null === $this->collAuthTokens || null !== $criteria || $partial) {
         if ($this->isNew() && null === $this->collAuthTokens) {
             return 0;
         }
         if ($partial && !$criteria) {
             return count($this->getAuthTokens());
         }
         $query = ChildAuthTokenQuery::create(null, $criteria);
         if ($distinct) {
             $query->distinct();
         }
         return $query->filterByuser($this)->count($con);
     }
     return count($this->collAuthTokens);
 }
 /**
  * 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 = ChildAuthTokenQuery::create();
     $criteria->add(AuthTokenTableMap::COL_ID, $this->id);
     return $criteria;
 }