2024-01-12 18:49:00 +01:00
|
|
|
<?PHP
|
|
|
|
declare(strict_types = 1);
|
|
|
|
$object_record_status = array (
|
|
|
|
'unlocked' => 'Unlocked',
|
|
|
|
'locked' => 'Locked',
|
|
|
|
'revision' => 'Revision',
|
|
|
|
'deleted' => 'Deleted',
|
2024-01-13 16:17:23 +01:00
|
|
|
'archived' => 'Archived',
|
2024-01-12 18:49:00 +01:00
|
|
|
);
|