Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F119883907
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
Mon, Jun 30, 05:22
Size
853 B
Mime Type
text/x-php
Expires
Wed, Jul 2, 05:22 (1 d, 16 h)
Engine
blob
Format
Raw Data
Handle
27082267
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