public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = WebMapSchoolLocationPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setMapProvinceId($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setInitial($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setName($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setLatitude($arr[$keys[4]]);
     }
     if (array_key_exists($keys[5], $arr)) {
         $this->setLongtitude($arr[$keys[5]]);
     }
     if (array_key_exists($keys[6], $arr)) {
         $this->setImage($arr[$keys[6]]);
     }
 }
Example #2
0
 public static function doSelectJoinAll(Criteria $c, $con = null)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     WebMapSchoolPeer::addSelectColumns($c);
     $startcol2 = WebMapSchoolPeer::NUM_COLUMNS - WebMapSchoolPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     WebMapSchoolLocationPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + WebMapSchoolLocationPeer::NUM_COLUMNS;
     $c->addJoin(WebMapSchoolPeer::MAP_SCHOOL_LOCATION_ID, WebMapSchoolLocationPeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = WebMapSchoolPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = WebMapSchoolLocationPeer::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->getWebMapSchoolLocation();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addWebMapSchool($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initWebMapSchools();
             $obj2->addWebMapSchool($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }
 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(WebMapSchoolLocationPeer::ID, $pks, Criteria::IN);
         $objs = WebMapSchoolLocationPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Example #4
0
 public function getWebMapSchoolLocation($con = null)
 {
     include_once 'lib/model/om/BaseWebMapSchoolLocationPeer.php';
     if ($this->aWebMapSchoolLocation === null && $this->map_school_location_id !== null) {
         $this->aWebMapSchoolLocation = WebMapSchoolLocationPeer::retrieveByPK($this->map_school_location_id, $con);
     }
     return $this->aWebMapSchoolLocation;
 }
Example #5
0
 public function countWebMapSchoolLocations($criteria = null, $distinct = false, $con = null)
 {
     include_once 'lib/model/om/BaseWebMapSchoolLocationPeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     $criteria->add(WebMapSchoolLocationPeer::MAP_PROVINCE_ID, $this->getId());
     return WebMapSchoolLocationPeer::doCount($criteria, $distinct, $con);
 }
Example #6
0
 public function executeMapsschool()
 {
     $this->module = $this->getModuleName();
     $id = $this->getRequestParameter('id');
     $this->location = WebMapSchoolLocationPeer::retrieveByPK($id);
     if (!$this->location) {
         echo 'location not found';
     }
 }