Example #1
0
 /**
  * Load the form
  */
 private function loadForm()
 {
     $this->frm = new FrontendForm("search", null, "get", null, false);
     $this->frm->addText("search", $this->search, null, "form-control");
     $this->frm->addHidden("lat", null, null);
     $this->frm->addHidden("lng", null, null);
     $groups = FrontendAddressesModel::getAllGroupsForDropbox();
     $this->frm->addDropdown("groups", $groups, null, true);
     //        $topGroups = FrontendAddressesModel::getAllTopGroups();
     //        $topGroupsChk = array();
     //        foreach($topGroups as $tgk => $tg){
     //            $topGroupsChk[] = array('label' => $tg, 'value' => $tgk);
     //        }
     //        $this->frm->addMultiCheckbox("topgroups", $topGroupsChk, null);
 }