選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

BackendController.php 387B

12345678910111213141516171819202122
  1. <?php
  2. namespace backend\controllers;
  3. use yii ;
  4. class BackendController extends \yii\web\Controller
  5. {
  6. public function beforeAction($event)
  7. {
  8. if(Yii::$app->user->identity->etatPaiementEtablissement() == 'essai-terminee')
  9. {
  10. $this->redirect(['paiement/index']) ;
  11. }
  12. return parent::beforeAction($event);
  13. }
  14. }
  15. ?>