Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93081841
DrydockLogSearchEngine.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, Nov 26, 01:58
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Nov 28, 01:58 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22569145
Attached To
rPH Phabricator
DrydockLogSearchEngine.php
View Options
<?php
final
class
DrydockLogSearchEngine
extends
PhabricatorApplicationSearchEngine
{
public
function
getResultTypeDescription
()
{
return
pht
(
'Drydock Logs'
);
}
public
function
getApplicationClassName
()
{
return
'PhabricatorApplicationDrydock'
;
}
public
function
buildSavedQueryFromRequest
(
AphrontRequest
$request
)
{
$saved
=
new
PhabricatorSavedQuery
();
return
$saved
;
}
public
function
buildQueryFromSavedQuery
(
PhabricatorSavedQuery
$saved
)
{
$query
=
id
(
new
DrydockLogQuery
());
return
$query
;
}
public
function
buildSearchForm
(
AphrontFormView
$form
,
PhabricatorSavedQuery
$saved
)
{
}
protected
function
getURI
(
$path
)
{
return
'/drydock/log/'
.
$path
;
}
public
function
getBuiltinQueryNames
()
{
$names
=
array
(
'all'
=>
pht
(
'All Logs'
),
);
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
$logs
,
PhabricatorSavedQuery
$query
,
array
$handles
)
{
return
id
(
new
DrydockLogListView
())
->
setUser
(
$this
->
requireViewer
())
->
setLogs
(
$logs
)
->
render
();
}
}
Event Timeline
Log In to Comment