portal.mkgtu.ru/common/models/AbiturientAvatar.php

22 lines
441 B
PHP
Raw Permalink Normal View History

2024-03-28 09:51:45 +03:00
<?php
namespace common\models;
use common\components\changeHistoryHandler\QuestionaryActiveRecordChangeHistoryHandler;
class AbiturientAvatar extends Attachment
{
public function __construct($config = [])
{
parent::__construct($config);
$this->setChangeHistoryHandler(new QuestionaryActiveRecordChangeHistoryHandler($this));
}
public function formName()
{
return 'AbiturientAvatar';
}
}