Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97216732
PhabricatorSearchDocumentField.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
Fri, Jan 3, 13:06
Size
853 B
Mime Type
text/x-php
Expires
Sun, Jan 5, 13:06 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23356688
Attached To
rPH Phabricator
PhabricatorSearchDocumentField.php
View Options
<?php
final
class
PhabricatorSearchDocumentField
extends
PhabricatorSearchDAO
{
protected
$phidType
;
protected
$field
;
protected
$auxPHID
;
protected
$corpus
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_TIMESTAMPS
=>
false
,
self
::
CONFIG_IDS
=>
self
::
IDS_MANUAL
,
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'phidType'
=>
'text4'
,
'field'
=>
'text4'
,
'auxPHID'
=>
'phid?'
,
'corpus'
=>
'fulltext?'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_phid'
=>
null
,
'phid'
=>
array
(
'columns'
=>
array
(
'phid'
),
),
'corpus'
=>
array
(
'columns'
=>
array
(
'corpus'
),
'type'
=>
'FULLTEXT'
,
),
),
)
+
parent
::
getConfiguration
();
}
public
function
getIDKey
()
{
return
'phid'
;
}
}
Event Timeline
Log In to Comment