mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 20:22:46 +01:00
21 lines
383 B
PHP
21 lines
383 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @group phriction
|
||
|
*/
|
||
|
final class PhrictionDocumentStatus extends PhrictionConstants {
|
||
|
|
||
|
const STATUS_EXISTS = 0;
|
||
|
const STATUS_DELETED = 1;
|
||
|
|
||
|
public static function getConduitConstant($const) {
|
||
|
static $map = array(
|
||
|
self::STATUS_EXISTS => 'exists',
|
||
|
self::STATUS_DELETED => 'deleted',
|
||
|
);
|
||
|
|
||
|
return idx($map, $const, 'unknown');
|
||
|
}
|
||
|
|
||
|
}
|