portal.mkgtu.ru/common/components/RegulationRelationManager.php

26 lines
519 B
PHP
Raw Permalink Normal View History

2024-03-28 09:51:45 +03:00
<?php
namespace common\components;
class RegulationRelationManager extends PageRelationManager
{
public static function GetRelatedListWithDependentNotEmptyAbstractionForApplication(): array
{
return [
static::RELATED_ENTITY_OLYMPIAD => 'getBachelorPreferencesOlymp',
static::RELATED_ENTITY_PREFERENCE => 'getBachelorPreferencesSpecialRight',
static::RELATED_ENTITY_TARGET_RECEPTION => 'getTargetReceptions',
];
}
}