portal.mkgtu.ru/common/models/settings/Setting.php

27 lines
507 B
PHP
Raw Normal View History

2024-03-28 09:51:45 +03:00
<?php
namespace common\models\settings;
class Setting extends \yii\db\ActiveRecord
{
public function rules()
{
return [
[['name', 'value'], 'required'],
['name', 'string', 'max' => 100],
['value', 'string', 'max' => 1000],
['name', 'unique'],
];
}
public function attributeLabels()
{
return [
'name' => 'Наименование',
'value' => 'Значение',
];
}
}