Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F436974
PhabricatorSearchEngineAttachment.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorSearchEngineAttachment.php
View Options
<?php
abstract
class
PhabricatorSearchEngineAttachment
extends
Phobject
{
private
$attachmentKey
;
private
$viewer
;
private
$searchEngine
;
final
public
function
setViewer
(
$viewer
)
{
$this
->
viewer
=
$viewer
;
return
$this
;
}
final
public
function
getViewer
()
{
return
$this
->
viewer
;
}
final
public
function
setSearchEngine
(
PhabricatorApplicationSearchEngine
$engine
)
{
$this
->
searchEngine
=
$engine
;
return
$this
;
}
final
public
function
getSearchEngine
()
{
return
$this
->
searchEngine
;
}
public
function
setAttachmentKey
(
$attachment_key
)
{
$this
->
attachmentKey
=
$attachment_key
;
return
$this
;
}
public
function
getAttachmentKey
()
{
return
$this
->
attachmentKey
;
}
abstract
public
function
getAttachmentName
();
abstract
public
function
getAttachmentDescription
();
public
function
willLoadAttachmentData
(
$query
,
$spec
)
{
return
;
}
public
function
loadAttachmentData
(
array
$objects
,
$spec
)
{
return
null
;
}
abstract
public
function
getAttachmentForObject
(
$object
,
$data
,
$spec
);
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, May 4, 12:29 AM (1 d, 13 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
62949
Default Alt Text
PhabricatorSearchEngineAttachment.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment