%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/water/vendor/amnah/yii2-user/models/ |
Upload File : |
<?php namespace amnah\yii2\user\models; use Yii; use yii\db\ActiveRecord; /** * This is the model class for table "tbl_user_auth". * * @property string $id * @property string $user_id * @property string $provider * @property string $provider_id * @property string $provider_attributes * @property string $created_at * @property string $updated_at * * @property User $user */ class UserAuth extends ActiveRecord { /** * @var \amnah\yii2\user\Module */ public $module; /** * @inheritdoc */ public function init() { if (!$this->module) { $this->module = Yii::$app->getModule("user"); } } /** * @inheritdoc */ public function attributeLabels() { return [ 'id' => Yii::t('user', 'ID'), 'user_id' => Yii::t('user', 'User ID'), 'provider' => Yii::t('user', 'Provider'), 'provider_id' => Yii::t('user', 'Provider ID'), 'provider_attributes' => Yii::t('user', 'Provider Attributes'), 'created_at' => Yii::t('user', 'Created At'), 'updated_at' => Yii::t('user', 'Updated At'), ]; } /** * @inheritdoc */ public function behaviors() { return [ 'timestamp' => [ 'class' => 'yii\behaviors\TimestampBehavior', 'value' => function ($event) { return gmdate("Y-m-d H:i:s"); }, ], ]; } /** * @return \yii\db\ActiveQuery */ public function getUser() { $user = $this->module->model("User"); return $this->hasOne($user::className(), ['id' => 'user_id']); } /** * Set user id * @param int $userId * @return static */ public function setUser($userId) { $this->user_id = $userId; return $this; } /** * Set provider attributes * @param array $attributes * @return static */ public function setProviderAttributes($attributes) { $this->provider_attributes = json_encode($attributes); return $this; } /** * Get provider attributes * @return array */ public function getProviderAttributes() { return json_decode($this->provider_attributes, true); } }