vc text short

This commit is contained in:
andrey
2021-07-13 13:45:44 +03:00
parent fef3f26ae3
commit ca64e6741f
5 changed files with 39 additions and 2 deletions

View File

@ -27,6 +27,7 @@ use yii\helpers\ArrayHelper;
* @property string $resume
* @property string $salary
* @property string $vc_text
* @property string $vc_text_short
* @property int $position_id
* @property int $city
* @property int $level
@ -96,7 +97,7 @@ class UserCard extends \yii\db\ActiveRecord
return [
[['fio', 'status', 'gender', 'email', 'level', 'position_id'], 'required'],
[['gender', 'status', 'position_id', 'id_user', 'level'], 'integer'],
[['dob', 'created_at', 'updated_at', 'deleted_at', 'vc_text'], 'safe'],
[['dob', 'created_at', 'updated_at', 'deleted_at', 'vc_text', 'vc_text_short'], 'safe'],
[['fio', 'passport', 'photo', 'email', 'resume', 'city', 'link_vk', 'link_telegram'], 'string', 'max' => 255],
[['salary'], 'string', 'max' => 100],
[['position_id'], 'exist', 'skipOnError' => true, 'targetClass' => Position::class, 'targetAttribute' => ['position_id' => 'id']],
@ -129,6 +130,7 @@ class UserCard extends \yii\db\ActiveRecord
'link_vk' => 'VK',
'link_telegram' => 'Telegram',
'vc_text' => 'Резюме текст',
'vc_text_short' => 'Резюме короткий текст',
'level' => 'Уровень'
];
}