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

32 lines
508 B
PHP
Raw Normal View History

2024-03-28 09:51:45 +03:00
<?php
namespace common\models\settings;
use yii\helpers\ArrayHelper;
class AuthSetting extends Setting
{
public function rules()
{
return ArrayHelper::merge(parent::rules(), [
[
['value'], 'number', 'min' => 0, 'when' => function() {
return $this->name === 'identity_cookie_duration';
}
]
]);
}
public static function tableName()
{
return '{{%auth_settings}}';
}
}