Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1112722
PhabricatorFerretDocument.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
969 B
Referenced Files
None
Subscribers
None
PhabricatorFerretDocument.php
View Options
<?php
abstract
class
PhabricatorFerretDocument
extends
PhabricatorSearchDAO
{
protected
$objectPHID
;
protected
$isClosed
;
protected
$authorPHID
;
protected
$ownerPHID
;
protected
$epochCreated
;
protected
$epochModified
;
abstract
public
function
getIndexKey
();
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_TIMESTAMPS
=>
false
,
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'isClosed'
=>
'bool'
,
'authorPHID'
=>
'phid?'
,
'ownerPHID'
=>
'phid?'
,
'epochCreated'
=>
'epoch'
,
'epochModified'
=>
'epoch'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_object'
=>
array
(
'columns'
=>
array
(
'objectPHID'
),
'unique'
=>
true
,
),
),
)
+
parent
::
getConfiguration
();
}
public
function
getTableName
()
{
$application
=
$this
->
getApplicationName
();
$key
=
$this
->
getIndexKey
();
return
"{$application}_{$key}_fdocument"
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Jun 30, 11:43 PM (1 d, 19 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
268608
Default Alt Text
PhabricatorFerretDocument.php (969 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment