Example #1
0
 public function loadLoc()
 {
     $this->locHelper->setCollection($this->db->locations);
     $loc = $this->locHelper->getCollection()->findOne(["lid" => $this->locId]);
     if ($loc) {
         $this->locHelper = new LocationHelper($loc);
         $this->locHelper->setCollection($this->getDb()->locations);
     } else {
         throw new \Exception("Err load loc");
     }
 }