コード例 #1
0
ファイル: MainController.php プロジェクト: glebstar/guides
 public function actionIndex()
 {
     return $this->render('index', ['guide' => User::getCurrentGuide(), 'cities' => Geo::getGuideCities(3), 'excursions' => Excursion::getExcursions(3), 'photos' => Photo::getPhotos(12)]);
 }
コード例 #2
0
ファイル: Header.php プロジェクト: glebstar/guides
 public function run()
 {
     return $this->render('header', ['country' => Geo::getGuideCountries(1)]);
 }
コード例 #3
0
ファイル: OrderExc.php プロジェクト: glebstar/guides
 public function run()
 {
     return $this->render('orderExc', ['countries' => Geo::getGuideCountries(), 'cities' => Geo::getGuideCities()]);
 }