portal.mkgtu.ru/common/modules/abiturient/models/interfaces/IDraftable.php

13 lines
285 B
PHP
Executable File

<?php
namespace common\modules\abiturient\models\interfaces;
interface IDraftable
{
const DRAFT_STATUS_CREATED = 1;
const DRAFT_STATUS_SENT = 2;
const DRAFT_STATUS_MODERATING = 3;
const DRAFT_STATUS_APPROVED = 4;
public function translateDraftStatus(): string;
}