Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92758761
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
Sat, Nov 23, 11:55
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Nov 25, 11:55 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22506645
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