Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98590221
PhabricatorMailingListsController.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, Jan 14, 15:45
Size
964 B
Mime Type
text/x-php
Expires
Thu, Jan 16, 15:45 (2 d)
Engine
blob
Format
Raw Data
Handle
23600077
Attached To
rPH Phabricator
PhabricatorMailingListsController.php
View Options
<?php
abstract
class
PhabricatorMailingListsController
extends
PhabricatorController
{
public
function
buildSideNavView
(
$for_app
=
false
)
{
$user
=
$this
->
getRequest
()->
getUser
();
$nav
=
new
AphrontSideNavFilterView
();
$nav
->
setBaseURI
(
new
PhutilURI
(
$this
->
getApplicationURI
()));
if
(
$for_app
)
{
$nav
->
addFilter
(
'edit'
,
pht
(
'Create List'
));
}
id
(
new
PhabricatorMailingListSearchEngine
())
->
setViewer
(
$user
)
->
addNavigationItems
(
$nav
->
getMenu
());
$nav
->
selectFilter
(
null
);
return
$nav
;
}
protected
function
buildApplicationMenu
()
{
return
$this
->
buildSideNavView
(
true
)->
getMenu
();
}
protected
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
$crumbs
->
addAction
(
id
(
new
PHUIListItemView
())
->
setName
(
pht
(
'Create List'
))
->
setHref
(
$this
->
getApplicationURI
(
'edit/'
))
->
setIcon
(
'fa-plus-square'
));
return
$crumbs
;
}
}
Event Timeline
Log In to Comment