Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102253055
PhabricatorSearchEngineAttachment.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
Tue, Feb 18, 18:58
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Feb 20, 18:58 (2 d)
Engine
blob
Format
Raw Data
Handle
24268485
Attached To
rPH Phabricator
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
);
}
Event Timeline
Log In to Comment