Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96123984
PhabricatorSearchDocumentRelationship.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, Dec 22, 21:57
Size
939 B
Mime Type
text/x-php
Expires
Tue, Dec 24, 21:57 (2 d)
Engine
blob
Format
Raw Data
Handle
23127904
Attached To
rPH Phabricator
PhabricatorSearchDocumentRelationship.php
View Options
<?php
final
class
PhabricatorSearchDocumentRelationship
extends
PhabricatorSearchDAO
{
protected
$relatedPHID
;
protected
$relation
;
protected
$relatedType
;
protected
$relatedTime
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_TIMESTAMPS
=>
false
,
self
::
CONFIG_IDS
=>
self
::
IDS_MANUAL
,
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'relation'
=>
'text4'
,
'relatedType'
=>
'text4'
,
'relatedTime'
=>
'epoch'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_phid'
=>
null
,
'phid'
=>
array
(
'columns'
=>
array
(
'phid'
),
),
'relatedPHID'
=>
array
(
'columns'
=>
array
(
'relatedPHID'
,
'relation'
),
),
'relation'
=>
array
(
'columns'
=>
array
(
'relation'
,
'relatedPHID'
),
),
),
)
+
parent
::
getConfiguration
();
}
public
function
getIDKey
()
{
return
'phid'
;
}
}
Event Timeline
Log In to Comment