public static function retrieveByEmail($email)
 {
     $contact = ContactInfoPeer::retrieveByEmail($email);
     if ($contact != null) {
         return $contact->getsfGuardUser()->getProfile();
     }
     return null;
 }
 public function getPrimaryContactInfo()
 {
     $contact = ContactInfoPeer::getUserContactInfo($this->getUserId(), 'primary');
     if ($contact == null) {
         $contact = new ContactInfo();
         $contact->setTitle('Primary');
         $contact->setEmail($this->getsfGuardUser()->getUserName());
         $contact->setPrivacyLevel(sfConfig::get('app_profile_privacy_default'));
         $contact->setUserId($this->getUserId());
         $contact->save();
     }
     return $contact;
 }
Exemple #3
0
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = ContactInfoPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setUserId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setUuid($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setTitle($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setEmail($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setPhone($arr[$keys[4]]);
     }
     if (array_key_exists($keys[5], $arr)) {
         $this->setAddress1($arr[$keys[5]]);
     }
     if (array_key_exists($keys[6], $arr)) {
         $this->setAddress2($arr[$keys[6]]);
     }
     if (array_key_exists($keys[7], $arr)) {
         $this->setCity($arr[$keys[7]]);
     }
     if (array_key_exists($keys[8], $arr)) {
         $this->setState($arr[$keys[8]]);
     }
     if (array_key_exists($keys[9], $arr)) {
         $this->setPostal($arr[$keys[9]]);
     }
     if (array_key_exists($keys[10], $arr)) {
         $this->setPublished($arr[$keys[10]]);
     }
     if (array_key_exists($keys[11], $arr)) {
         $this->setPrivacyLevel($arr[$keys[11]]);
     }
     if (array_key_exists($keys[12], $arr)) {
         $this->setDeletedAt($arr[$keys[12]]);
     }
     if (array_key_exists($keys[13], $arr)) {
         $this->setVersion($arr[$keys[13]]);
     }
     if (array_key_exists($keys[14], $arr)) {
         $this->setUpdatedAt($arr[$keys[14]]);
     }
     if (array_key_exists($keys[15], $arr)) {
         $this->setCreatedAt($arr[$keys[15]]);
     }
     if (array_key_exists($keys[16], $arr)) {
         $this->setId($arr[$keys[16]]);
     }
 }
Exemple #4
0
 public function countContactInfos($criteria = null, $distinct = false, $con = null)
 {
     include_once 'lib/model/om/BaseContactInfoPeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     $criteria->add(ContactInfoPeer::USER_ID, $this->getId());
     return ContactInfoPeer::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(ContactInfoPeer::ID, $pks, Criteria::IN);
         $objs = ContactInfoPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Exemple #6
0
 public static function retrieveByEmail($email)
 {
     $c = new Criteria();
     $c->add(ContactInfoPeer::EMAIL, $email);
     return ContactInfoPeer::doSelectOne($c);
 }