Example #1
0
 public function handleErrorUpdateProfile()
 {
     $this->forward404Unless($this->getUser()->isAuthenticated(), 'not logged in, cannot edit profile, obviously');
     $this->tab = "editprofile";
     $this->profile = $this->getUser()->getProfile();
     $this->campuses = CampusPeer::doSelect(new Criteria());
     $this->departments = DepartmentPeer::doSelect(new Criteria());
     $this->subdepartments = SubdepartmentPeer::doSelect(new Criteria());
     $this->setTemplate("editProfile");
     return sfView::SUCCESS;
 }
 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(SubdepartmentPeer::ID, $pks, Criteria::IN);
         $objs = SubdepartmentPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Example #3
0
 public function countSubdepartments($criteria = null, $distinct = false, $con = null)
 {
     include_once 'lib/model/om/BaseSubdepartmentPeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     $criteria->add(SubdepartmentPeer::DEPARTMENT_ID, $this->getId());
     return SubdepartmentPeer::doCount($criteria, $distinct, $con);
 }
 public static function doSelectJoinAllExceptDepartment(Criteria $c, $con = null)
 {
     foreach (sfMixer::getCallables('BasesfGuardUserProfilePeer:doSelectJoinAllExcept:doSelectJoinAllExcept') as $callable) {
         call_user_func($callable, 'BasesfGuardUserProfilePeer', $c, $con);
     }
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     sfGuardUserProfilePeer::addSelectColumns($c);
     $startcol2 = sfGuardUserProfilePeer::NUM_COLUMNS - sfGuardUserProfilePeer::NUM_LAZY_LOAD_COLUMNS + 1;
     sfGuardUserPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + sfGuardUserPeer::NUM_COLUMNS;
     CampusPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + CampusPeer::NUM_COLUMNS;
     SubdepartmentPeer::addSelectColumns($c);
     $startcol5 = $startcol4 + SubdepartmentPeer::NUM_COLUMNS;
     $c->addJoin(sfGuardUserProfilePeer::USER_ID, sfGuardUserPeer::ID);
     $c->addJoin(sfGuardUserProfilePeer::CAMPUS_ID, CampusPeer::ID);
     $c->addJoin(sfGuardUserProfilePeer::SUBDEPARTMENT_ID, SubdepartmentPeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = sfGuardUserProfilePeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = sfGuardUserPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj2 = new $cls();
         $obj2->hydrate($rs, $startcol2);
         $newObject = true;
         for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
             $temp_obj1 = $results[$j];
             $temp_obj2 = $temp_obj1->getsfGuardUser();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addsfGuardUserProfile($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initsfGuardUserProfiles();
             $obj2->addsfGuardUserProfile($obj1);
         }
         $omClass = CampusPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj3 = new $cls();
         $obj3->hydrate($rs, $startcol3);
         $newObject = true;
         for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
             $temp_obj1 = $results[$j];
             $temp_obj3 = $temp_obj1->getCampus();
             if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj3->addsfGuardUserProfile($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj3->initsfGuardUserProfiles();
             $obj3->addsfGuardUserProfile($obj1);
         }
         $omClass = SubdepartmentPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj4 = new $cls();
         $obj4->hydrate($rs, $startcol4);
         $newObject = true;
         for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
             $temp_obj1 = $results[$j];
             $temp_obj4 = $temp_obj1->getSubdepartment();
             if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj4->addsfGuardUserProfile($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj4->initsfGuardUserProfiles();
             $obj4->addsfGuardUserProfile($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }
 public function getSubdepartment($con = null)
 {
     if ($this->aSubdepartment === null && $this->subdepartment_id !== null) {
         include_once 'lib/model/om/BaseSubdepartmentPeer.php';
         $this->aSubdepartment = SubdepartmentPeer::retrieveByPK($this->subdepartment_id, $con);
     }
     return $this->aSubdepartment;
 }
Example #6
0
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = SubdepartmentPeer::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->setDepartmentId($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setName($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setAbbreviation($arr[$keys[4]]);
     }
     if (array_key_exists($keys[5], $arr)) {
         $this->setSlug($arr[$keys[5]]);
     }
     if (array_key_exists($keys[6], $arr)) {
         $this->setDeletedAt($arr[$keys[6]]);
     }
     if (array_key_exists($keys[7], $arr)) {
         $this->setCreatedAt($arr[$keys[7]]);
     }
 }