Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92732746
NuanceSourceSearchEngine.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, 06:05
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Nov 25, 06:05 (2 d)
Engine
blob
Format
Raw Data
Handle
22500676
Attached To
rPH Phabricator
NuanceSourceSearchEngine.php
View Options
<?php
final
class
NuanceSourceSearchEngine
extends
PhabricatorApplicationSearchEngine
{
public
function
getApplicationClassName
()
{
return
'PhabricatorNuanceApplication'
;
}
public
function
getResultTypeDescription
()
{
return
pht
(
'Nuance Sources'
);
}
public
function
newQuery
()
{
return
new
NuanceSourceQuery
();
}
protected
function
buildQueryFromParameters
(
array
$map
)
{
$query
=
$this
->
newQuery
();
if
(
$map
[
'match'
]
!==
null
)
{
$query
->
withNameNgrams
(
$map
[
'match'
]);
}
return
$query
;
}
protected
function
buildCustomSearchFields
()
{
return
array
(
id
(
new
PhabricatorSearchTextField
())
->
setLabel
(
pht
(
'Name Contains'
))
->
setKey
(
'match'
)
->
setDescription
(
pht
(
'Search for sources by name substring.'
)),
);
}
protected
function
getURI
(
$path
)
{
return
'/nuance/source/'
.
$path
;
}
protected
function
getBuiltinQueryNames
()
{
$names
=
array
(
'all'
=>
pht
(
'All Sources'
),
);
return
$names
;
}
public
function
buildSavedQueryFromBuiltin
(
$query_key
)
{
$query
=
$this
->
newSavedQuery
();
$query
->
setQueryKey
(
$query_key
);
switch
(
$query_key
)
{
case
'all'
:
return
$query
;
}
return
parent
::
buildSavedQueryFromBuiltin
(
$query_key
);
}
protected
function
renderResultList
(
array
$sources
,
PhabricatorSavedQuery
$query
,
array
$handles
)
{
assert_instances_of
(
$sources
,
'NuanceSource'
);
$viewer
=
$this
->
requireViewer
();
$list
=
new
PHUIObjectItemListView
();
$list
->
setUser
(
$viewer
);
foreach
(
$sources
as
$source
)
{
$item
=
id
(
new
PHUIObjectItemView
())
->
setObjectName
(
pht
(
'Source %d'
,
$source
->
getID
()))
->
setHeader
(
$source
->
getName
())
->
setHref
(
$source
->
getURI
());
$item
->
addIcon
(
'none'
,
$source
->
getType
());
$list
->
addItem
(
$item
);
}
$result
=
new
PhabricatorApplicationSearchResultView
();
$result
->
setObjectList
(
$list
);
$result
->
setNoDataString
(
pht
(
'No sources found.'
));
return
$result
;
}
}
Event Timeline
Log In to Comment