コード例 #1
0
ファイル: CartPresenter.php プロジェクト: shophp/shophp
 public function renderDefault()
 {
     $this->template->offersShipment = $this->shipmentService->existsAnyShipmentOption();
 }
コード例 #2
0
ファイル: ShipmentPresenter.php プロジェクト: shophp/shophp
 public function actionDefault()
 {
     if (!$this->shipmentService->existsAnyShipmentOption()) {
         $this->redirect(':Front:Order:Payment:');
     }
 }