Example #1
0
 public function countContactCothinks($criteria = null, $distinct = false, $con = null)
 {
     include_once 'lib/model/om/BaseContactCothinkPeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     $criteria->add(ContactCothinkPeer::USER_ID, $this->getId());
     return ContactCothinkPeer::doCount($criteria, $distinct, $con);
 }
 public static function retrieveByPKs($pks, $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(self::DATABASE_NAME);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria();
         $criteria->add(ContactCothinkPeer::ID, $pks, Criteria::IN);
         $objs = ContactCothinkPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Example #3
0
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = ContactCothinkPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setUuid($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setUserId($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setEmail($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setName($arr[$keys[4]]);
     }
     if (array_key_exists($keys[5], $arr)) {
         $this->setTitle($arr[$keys[5]]);
     }
     if (array_key_exists($keys[6], $arr)) {
         $this->setSlug($arr[$keys[6]]);
     }
     if (array_key_exists($keys[7], $arr)) {
         $this->setDescription($arr[$keys[7]]);
     }
     if (array_key_exists($keys[8], $arr)) {
         $this->setStatus($arr[$keys[8]]);
     }
     if (array_key_exists($keys[9], $arr)) {
         $this->setType($arr[$keys[9]]);
     }
     if (array_key_exists($keys[10], $arr)) {
         $this->setCreatedAt($arr[$keys[10]]);
     }
     if (array_key_exists($keys[11], $arr)) {
         $this->setDeletedAt($arr[$keys[11]]);
     }
     if (array_key_exists($keys[12], $arr)) {
         $this->setUpdatedAt($arr[$keys[12]]);
     }
 }