Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F4852450
PhabricatorDashboardPanelListController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorDashboardPanelListController.php
View Options
<?php
final
class
PhabricatorDashboardPanelListController
extends
PhabricatorDashboardController
{
private
$queryKey
;
public
function
shouldAllowPublic
(
)
{
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$query_key
=
$request
->
getURIData
(
'queryKey'
)
;
$controller
=
id
(
new
PhabricatorApplicationSearchController
(
)
)
->
setQueryKey
(
$query_key
)
->
setSearchEngine
(
new
PhabricatorDashboardPanelSearchEngine
(
)
)
->
setNavigation
(
$this
->
buildSideNavView
(
)
)
;
return
$this
->
delegateToController
(
$controller
)
;
}
public
function
buildSideNavView
(
)
{
$user
=
$this
->
getRequest
(
)
->
getUser
(
)
;
$nav
=
new
AphrontSideNavFilterView
(
)
;
$nav
->
setBaseURI
(
new
PhutilURI
(
$this
->
getApplicationURI
(
)
)
)
;
id
(
new
PhabricatorDashboardPanelSearchEngine
(
)
)
->
setViewer
(
$user
)
->
addNavigationItems
(
$nav
->
getMenu
(
)
)
;
$nav
->
selectFilter
(
null
)
;
return
$nav
;
}
protected
function
buildApplicationCrumbs
(
)
{
$crumbs
=
parent
::
buildApplicationCrumbs
(
)
;
$crumbs
->
addTextCrumb
(
pht
(
'Panels'
)
,
$this
->
getApplicationURI
(
)
.
'panel/'
)
;
$crumbs
->
addAction
(
id
(
new
PHUIListItemView
(
)
)
->
setIcon
(
'fa-plus-square'
)
->
setName
(
pht
(
'Create Panel'
)
)
->
setHref
(
$this
->
getApplicationURI
(
)
.
'panel/create/'
)
)
;
return
$crumbs
;
}
protected
function
getNewUserBody
(
)
{
$create_button
=
id
(
new
PHUIButtonView
(
)
)
->
setTag
(
'a'
)
->
setText
(
pht
(
'Create a Panel'
)
)
->
setHref
(
'/dashboard/panel/create/'
)
->
setColor
(
PHUIButtonView
::
GREEN
)
;
$icon
=
$this
->
getApplication
(
)
->
getIcon
(
)
;
$app_name
=
$this
->
getApplication
(
)
->
getName
(
)
;
$view
=
id
(
new
PHUIBigInfoView
(
)
)
->
setIcon
(
$icon
)
->
setTitle
(
pht
(
'Welcome to %s'
,
$app_name
)
)
->
setDescription
(
pht
(
'Build individual panels to display on your homepage dashboard.'
)
)
->
addAction
(
$create_button
)
;
return
$view
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Jun 9, 06:34 (1 d, 9 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1768443
Default Alt Text
PhabricatorDashboardPanelListController.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment