Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97598101
NuanceQueueItem.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Jan 5, 14:33
Size
753 B
Mime Type
text/x-php
Expires
Tue, Jan 7, 14:33 (2 d)
Engine
blob
Format
Raw Data
Handle
23359042
Attached To
rPH Phabricator
NuanceQueueItem.php
View Options
<?php
final
class
NuanceQueueItem
extends
NuanceDAO
{
protected
$queuePHID
;
protected
$itemPHID
;
protected
$itemStatus
;
protected
$itemDateNuanced
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'itemStatus'
=>
'uint32'
,
'itemDateNuanced'
=>
'epoch'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_one_per_queue'
=>
array
(
'columns'
=>
array
(
'itemPHID'
,
'queuePHID'
),
'unique'
=>
true
,
),
'key_queue'
=>
array
(
'columns'
=>
array
(
'queuePHID'
,
'itemStatus'
,
'itemDateNuanced'
,
'id'
,
),
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment