|
|
@@ -77,7 +77,11 @@ class SiteController extends Controller |
|
|
|
|
|
|
|
public function actionIndex() |
|
|
|
{ |
|
|
|
|
|
|
|
// redirection de l'utilisateur vers le tableau de bord s'il est connecté |
|
|
|
if(!Yii::$app->user->isGuest) { |
|
|
|
return $this->redirect(['commande/index']) ; |
|
|
|
} |
|
|
|
|
|
|
|
// produits |
|
|
|
$produits = Produit::find()->orderBy('order ASC')->all() ; |
|
|
|
|
|
|
@@ -133,12 +137,12 @@ class SiteController extends Controller |
|
|
|
public function actionLogin() |
|
|
|
{ |
|
|
|
if (!\Yii::$app->user->isGuest) { |
|
|
|
return $this->goHome(); |
|
|
|
return Yii::$app->getResponse()->redirect(['commande/index']); |
|
|
|
} |
|
|
|
|
|
|
|
$model = new LoginForm(); |
|
|
|
if ($model->load(Yii::$app->request->post()) && $model->login()) { |
|
|
|
return $this->goBack(); |
|
|
|
return $this->goBack(['commande/index']); |
|
|
|
} else { |
|
|
|
return $this->render('login', [ |
|
|
|
'model' => $model, |