Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100556685
ManiphestProjectNameFulltextEngineExtension.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
Fri, Jan 31, 17:03
Size
566 B
Mime Type
text/x-php
Expires
Sun, Feb 2, 17:03 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23990091
Attached To
rPH Phabricator
ManiphestProjectNameFulltextEngineExtension.php
View Options
<?php
final
class
ManiphestProjectNameFulltextEngineExtension
extends
PhabricatorFulltextEngineExtension
{
const
EXTENSIONKEY
=
'maniphest.project.name'
;
public
function
getExtensionName
()
{
return
pht
(
'Maniphest Project Name Cache'
);
}
public
function
shouldIndexFulltextObject
(
$object
)
{
return
(
$object
instanceof
PhabricatorProject
);
}
public
function
indexFulltextObject
(
$object
,
PhabricatorSearchAbstractDocument
$document
)
{
ManiphestNameIndex
::
updateIndex
(
$object
->
getPHID
(),
$object
->
getName
());
}
}
Event Timeline
Log In to Comment