| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?php
- namespace app\models;
- use Yii;
- /**
- * This is the model class for table "user".
- *
- * @property integer $id
- * @property string $username
- * @property integer $role
- * @property string $email
- * @property string $fio
- * @property string $at_org
- * @property integer $org_type
- * @property string $member_phone
- * @property string $fax
- * @property integer $status
- * @property string $password_hash
- * @property string $auth_key
- * @property integer $confirmed_at
- * @property string $unconfirmed_email
- * @property integer $blocked_at
- * @property string $registration_ip
- * @property integer $created_at
- * @property integer $updated_at
- * @property integer $flags
- *
- * @property SocialAccount[] $socialAccounts
- * @property Token[] $tokens
- */
- class Admin extends Profile
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'user';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['username', 'role', 'email', 'fio', 'at_org', 'org_type', 'member_phone', 'fax', 'password_hash', 'auth_key', 'created_at', 'updated_at'], 'required'],
- [['role', 'org_type', 'status', 'confirmed_at', 'blocked_at', 'created_at', 'updated_at', 'flags'], 'integer'],
- [['username'], 'string', 'max' => 25],
- [['email', 'unconfirmed_email'], 'string', 'max' => 255],
- [['fio'], 'string', 'max' => 50],
- [['at_org'], 'string', 'max' => 30],
- [['member_phone', 'fax'], 'string', 'max' => 12],
- [['password_hash'], 'string', 'max' => 60],
- [['auth_key'], 'string', 'max' => 32],
- [['registration_ip'], 'string', 'max' => 45],
- [['username'], 'unique'],
- [['email'], 'unique']
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => Yii::t('app', 'ID'),
- 'username' => Yii::t('app', 'Username'),
- 'role' => Yii::t('app', 'Role'),
- 'email' => Yii::t('app', 'Email'),
- 'fio' => Yii::t('app', 'Fio'),
- 'at_org' => Yii::t('app', 'At Org'),
- 'org_type' => Yii::t('app', 'Org Type'),
- 'member_phone' => Yii::t('app', 'Member Phone'),
- 'fax' => Yii::t('app', 'Fax'),
- 'status' => Yii::t('app', 'Status'),
- 'password_hash' => Yii::t('app', 'Password Hash'),
- 'auth_key' => Yii::t('app', 'Auth Key'),
- 'confirmed_at' => Yii::t('app', 'Confirmed At'),
- 'unconfirmed_email' => Yii::t('app', 'Unconfirmed Email'),
- 'blocked_at' => Yii::t('app', 'Blocked At'),
- 'registration_ip' => Yii::t('app', 'Registration Ip'),
- 'created_at' => Yii::t('app', 'Created At'),
- 'updated_at' => Yii::t('app', 'Updated At'),
- 'flags' => Yii::t('app', 'Flags'),
- ];
- }
- /**
- * @return \yii\db\ActiveQuery
- */
- public function getSocialAccounts()
- {
- return $this->hasMany(SocialAccount::className(), ['user_id' => 'id']);
- }
- /**
- * @return \yii\db\ActiveQuery
- */
- public function getTokens()
- {
- return $this->hasMany(Token::className(), ['user_id' => 'id']);
- }
- }
|