コード例 #1
0
ファイル: AuthAction.php プロジェクト: communityii/yii2-user
 /**
  * @inheritdoc
  */
 public function init()
 {
     parent::init();
     $this->_module = Yii::$app->getModule('user');
 }
コード例 #2
0
 public function init()
 {
     $this->successCallback = Yii::$app->user->getIsGuest() ? [$this, 'authenticate'] : [$this, 'bindSocialNetwork'];
     $this->successUrl = RedirectHelper::getReturnUrl();
     parent::init();
 }