meraproject/themes/merakomis/fot/structure/eFotStatus.php

22 lines
437 B
PHP
Raw Normal View History

<?php
namespace themes\merakomis\fot\structure;
use core\core\structure\Enumerator;
class eFotStatus extends Enumerator {
const NONE = 0;
const C1 = 1;
const WORK = 2;
static $arr;
public static function getArray(): array
{
return self::$arr ? : self::$arr = [
self::NONE => ['n'=>'ХЗ'],
self::C1 => ['n'=>'1с'],
self::WORK => ['n'=>'Р'],
];
}
}