Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93532274
DivinerController.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, Nov 29, 12:34
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Dec 1, 12:34 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22659106
Attached To
rPH Phabricator
DivinerController.php
View Options
<?php
abstract
class
DivinerController
extends
PhabricatorController
{
protected
function
buildSideNavView
()
{
$menu
=
$this
->
buildMenu
();
return
AphrontSideNavFilterView
::
newFromMenu
(
$menu
);
}
protected
function
buildApplicationMenu
()
{
return
$this
->
buildMenu
();
}
private
function
buildMenu
()
{
$menu
=
new
PHUIListView
();
id
(
new
DivinerAtomSearchEngine
())
->
setViewer
(
$this
->
getRequest
()->
getUser
())
->
addNavigationItems
(
$menu
);
return
$menu
;
}
protected
function
renderAtomList
(
array
$symbols
)
{
assert_instances_of
(
$symbols
,
'DivinerLiveSymbol'
);
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$list
=
array
();
foreach
(
$symbols
as
$symbol
)
{
$item
=
id
(
new
DivinerBookItemView
())
->
setTitle
(
$symbol
->
getTitle
())
->
setHref
(
$symbol
->
getURI
())
->
setSubtitle
(
$symbol
->
getSummary
())
->
setType
(
DivinerAtom
::
getAtomTypeNameString
(
$symbol
->
getType
()));
$list
[]
=
$item
;
}
return
$list
;
}
}
Event Timeline
Log In to Comment