meraproject/themes/merakomis/fot/structure/eFotStatus.php
keboss-m 5c21d25d45 Initial commit: Merakomis portal, Docker stack and user-reader API.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-24 11:04:05 +03:00

22 lines
437 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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'=>'Р'],
];
}
}