1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-03 20:22:46 +01:00
phorge-phorge/src/applications/phriction/constants/PhrictionDocumentStatus.php

24 lines
488 B
PHP
Raw Normal View History

<?php
/**
* @group phriction
*/
final class PhrictionDocumentStatus extends PhrictionConstants {
const STATUS_EXISTS = 0;
const STATUS_DELETED = 1;
const STATUS_MOVED = 2;
const STATUS_STUB = 3;
public static function getConduitConstant($const) {
static $map = array(
self::STATUS_EXISTS => 'exists',
self::STATUS_DELETED => 'deleted',
self::STATUS_STUB => 'stubbed',
);
return idx($map, $const, 'unknown');
}
}