コード例 #1
0
ファイル: controller.php プロジェクト: Roman921/Step-21
 public function refreshMarkerList()
 {
     $markers = $this->getModel()->getAllMarkers();
     $data = $this->getView()->showMarkersTab($markers, true);
     $res = new responseGmp();
     $res->setHtml($data);
     return $res->ajaxExec();
 }