Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F118431035
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
Thu, Jun 19, 23:44
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jun 21, 23:44 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26870064
Attached To
rPH Phabricator
DivinerController.php
View Options
<?php
abstract
class
DivinerController
extends
PhabricatorController
{
protected
function
buildSideNavView
()
{
$menu
=
$this
->
buildMenu
();
return
AphrontSideNavFilterView
::
newFromMenu
(
$menu
);
}
public
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
)
{
switch
(
$symbol
->
getType
())
{
case
DivinerAtom
::
TYPE_FUNCTION
:
$title
=
$symbol
->
getTitle
().
'()'
;
break
;
default
:
$title
=
$symbol
->
getTitle
();
break
;
}
$item
=
id
(
new
DivinerBookItemView
())
->
setTitle
(
$title
)
->
setHref
(
$symbol
->
getURI
())
->
setSubtitle
(
$symbol
->
getSummary
())
->
setType
(
DivinerAtom
::
getAtomTypeNameString
(
$symbol
->
getType
()));
$list
[]
=
$item
;
}
return
$list
;
}
}
Event Timeline
Log In to Comment