Merge branch 'balance' of https://github.com/apuc/guild into balance

This commit is contained in:
2019-06-22 22:17:22 +03:00
313 changed files with 543 additions and 25 deletions

4
common/models/UseField.php Normal file → Executable file
View File

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