Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100728104
NuanceImportCursorData.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, Feb 2, 06:17
Size
843 B
Mime Type
text/x-php
Expires
Tue, Feb 4, 06:17 (2 d)
Engine
blob
Format
Raw Data
Handle
24022414
Attached To
rPH Phabricator
NuanceImportCursorData.php
View Options
<?php
final
class
NuanceImportCursorData
extends
NuanceDAO
{
protected
$sourcePHID
;
protected
$cursorKey
;
protected
$cursorType
;
protected
$properties
=
array
();
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_AUX_PHID
=>
true
,
self
::
CONFIG_SERIALIZATION
=>
array
(
'properties'
=>
self
::
SERIALIZATION_JSON
,
),
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'cursorType'
=>
'text32'
,
'cursorKey'
=>
'text32'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_source'
=>
array
(
'columns'
=>
array
(
'sourcePHID'
,
'cursorKey'
),
'unique'
=>
true
,
),
),
)
+
parent
::
getConfiguration
();
}
public
function
generatePHID
()
{
return
PhabricatorPHID
::
generateNewPHID
(
NuanceImportCursorPHIDType
::
TYPECONST
);
}
}
Event Timeline
Log In to Comment