当前位置: 首页>>代码示例>>PHP>>正文


PHP User::afterSave方法代码示例

本文整理汇总了PHP中dektrium\user\models\User::afterSave方法的典型用法代码示例。如果您正苦于以下问题:PHP User::afterSave方法的具体用法?PHP User::afterSave怎么用?PHP User::afterSave使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在dektrium\user\models\User的用法示例。


在下文中一共展示了User::afterSave方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: afterSave

 public function afterSave($insert, $changedAttributes)
 {
     parent::afterSave($insert, $changedAttributes);
     if ($insert) {
         UcenterUtil::register($this->username, $this->password, $this->email);
     }
 }
开发者ID:buuug7,项目名称:game4039,代码行数:7,代码来源:User.php

示例2: afterSave

 public function afterSave($insert, $changedAttributes)
 {
     parent::afterSave($insert, $changedAttributes);
     if (!\Yii::$app instanceof ConsoleApplication) {
         if ($this->scenario == 'update' || $this->scenario == 'create') {
             $auth = new DbManager();
             $auth->init();
             $name = $this->role ? $this->role : self::ROLE_DEFAULT;
             $role = $auth->getRole($name);
             if (!$insert) {
                 $auth->revokeAll($this->id);
             }
             $auth->assign($role, $this->id);
         }
     }
 }
开发者ID:lenarx,项目名称:yii2-cms-app-full,代码行数:16,代码来源:User.php

示例3: afterSave

 public function afterSave($insert, $changedAttributes)
 {
     parent::afterSave($insert, $changedAttributes);
     $auth = Yii::$app->authManager;
     if ($insert) {
         $location = new \common\models\Locations();
         //$location->scenario = \common\models\Locations::SCENARIO_REGISTER;
         if ($location->load(Yii::$app->request->post())) {
             $location->user_id = $this->id;
             if ($location->save()) {
                 // USER CREDIT
                 $userCredit = new \common\models\UserCredit();
                 $userCredit->user_id = $this->id;
                 $userCredit->time = date('Y-m-d H:i:s');
                 $userCredit->save();
                 // USER DETAILS
                 $userDetails = new \common\models\UserDetails();
                 $userDetails->user_id = $this->id;
                 $userDetails->loc_id = $location->id;
                 $userDetails->file_id = 2;
                 $userDetails->lang_code = 'SR';
                 $userDetails->currency_id = 1;
                 $userDetails->role_id = 1;
                 $userDetails->time_role_set = date('Y-m-d H:i:s');
                 $userDetails->update_time = date('Y-m-d H:i:s');
                 $userDetails->save();
                 // USER LOCATIONS
                 $user_location = new \common\models\UserLocations();
                 $user_location->loc_id = $location->id;
                 $user_location->user_id = $this->id;
                 $user_location->save();
                 // USER LOG
                 $userLog = new \common\models\UserLog();
                 $userLog->user_id = $this->id;
                 $userLog->action = $this->is_provider == 0 ? 'user_registered' : 'provider_registered';
                 $userLog->alias = $this->id;
                 $userLog->time = date('Y-m-d H:i:s');
                 $userLog->save();
                 // USER NOTIFICATONS
                 $userNotifications = new \common\models\UserNotifications();
                 $userNotifications->user_id = $this->id;
                 $userNotifications->update_time = date('Y-m-d H:i:s');
                 $userNotifications->save();
                 if ($this->is_provider == 1) {
                     $model = new \common\models\RegistrationProviderForm();
                     if ($model->load(Yii::$app->request->post())) {
                         // PROVIDER
                         $provider = new \common\models\Provider();
                         $provider->user_id = $this->id;
                         $provider->industry_id = $model->industry;
                         $provider->loc_id = $location->id;
                         $provider->legal_form = 'freelancer';
                         $provider->type = 'service_provider';
                         $provider->department_type = 'hq';
                         $provider->status = 'active';
                         $provider->registration_time = date('Y-m-d H:i:s');
                         $provider->save();
                         $userRole = $auth->getRole('provider');
                         $auth->assign($userRole, $this->id);
                     }
                 } else {
                     $userRole = $auth->getRole('user');
                     $auth->assign($userRole, $this->id);
                 }
             }
         }
     } else {
         $this->updated_at = time();
     }
 }
开发者ID:bokko79,项目名称:servicemapp,代码行数:70,代码来源:User.php

示例4: afterSave

 /** @inheritdoc */
 public function afterSave($insert, $changedAttributes)
 {
     if ($insert) {
         $profile = \Yii::createObject(['class' => Profile::className(), 'user_id' => $this->id, 'gravatar_email' => $this->email]);
         $profile->save(false);
     }
     parent::afterSave($insert, $changedAttributes);
 }
开发者ID:poykub,项目名称:wph,代码行数:9,代码来源:User.php

示例5: afterSave

 public function afterSave($insert, $changedAttributes)
 {
     parent::afterSave($insert, $changedAttributes);
     if (($auth = Yii::$app->authManager) !== null) {
         $participant = $auth->getRole('participant');
         if ($participant !== null) {
             $auth->assign($participant, $this->id);
         }
     }
     return true;
 }
开发者ID:svd222,项目名称:blog,代码行数:11,代码来源:User.php


注:本文中的dektrium\user\models\User::afterSave方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。