Beispiel #1
0
 public function getCategoryGoogleStr()
 {
     $strCat = "";
     $placeCategory = PlaceCategory::findAll(['place_id' => $this->place_id]);
     foreach ($placeCategory as $mcat) {
         $strCat = $strCat . " | " . CategoryGoogle::findOne($mcat->categoria_id)->name;
     }
     return $strCat;
 }