add company

This commit is contained in:
king199025
2018-10-11 17:24:47 +03:00
parent 3e10a51c3a
commit 5e2bc02bb5
21 changed files with 720 additions and 10 deletions

View File

@ -20,6 +20,7 @@ class UseField extends \yii\db\ActiveRecord
{
const USE_PROFILE = 0;
const USE_PROJECT = 1;
const USE_COMPANY = 2;
/**
@ -66,7 +67,8 @@ class UseField extends \yii\db\ActiveRecord
{
return [
self::USE_PROFILE => 'Профиль',
self::USE_PROJECT => 'Проект'
self::USE_PROJECT => 'Проект',
self::USE_COMPANY => 'Компания'
];
}