Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105870987
PhabricatorPeopleProfilePanelEngine.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, Mar 20, 10:45
Size
3 KB
Mime Type
text/x-php
Expires
Sat, Mar 22, 10:45 (2 d)
Engine
blob
Format
Raw Data
Handle
25039042
Attached To
rPH Phabricator
PhabricatorPeopleProfilePanelEngine.php
View Options
<?php
final
class
PhabricatorPeopleProfilePanelEngine
extends
PhabricatorProfilePanelEngine
{
const
PANEL_PROFILE
=
'people.profile'
;
const
PANEL_MANAGE
=
'people.manage'
;
protected
function
isPanelEngineConfigurable
()
{
return
false
;
}
protected
function
getPanelURI
(
$path
)
{
$user
=
$this
->
getProfileObject
();
$username
=
$user
->
getUsername
();
$username
=
phutil_escape_uri
(
$username
);
return
"/p/{$username}/panel/{$path}"
;
}
protected
function
getBuiltinProfilePanels
(
$object
)
{
$viewer
=
$this
->
getViewer
();
$panels
=
array
();
$panels
[]
=
$this
->
newPanel
()
->
setBuiltinKey
(
self
::
PANEL_PROFILE
)
->
setPanelKey
(
PhabricatorPeopleDetailsProfilePanel
::
PANELKEY
);
// TODO: Convert this into a proper panel type.
$have_calendar
=
PhabricatorApplication
::
isClassInstalledForViewer
(
'PhabricatorCalendarApplication'
,
$viewer
);
if
(
$have_calendar
)
{
$uri
=
urisprintf
(
'/p/%s/calendar/'
,
$object
->
getUsername
());
$panels
[]
=
$this
->
newPanel
()
->
setBuiltinKey
(
'calendar'
)
->
setPanelKey
(
PhabricatorLinkProfilePanel
::
PANELKEY
)
->
setPanelProperty
(
'icon'
,
'calendar'
)
->
setPanelProperty
(
'name'
,
pht
(
'Calendar'
))
->
setPanelProperty
(
'uri'
,
$uri
);
}
$have_maniphest
=
PhabricatorApplication
::
isClassInstalledForViewer
(
'PhabricatorManiphestApplication'
,
$viewer
);
if
(
$have_maniphest
)
{
$uri
=
urisprintf
(
'/maniphest/?statuses=open()&assigned=%s#R'
,
$object
->
getPHID
());
$panels
[]
=
$this
->
newPanel
()
->
setBuiltinKey
(
'tasks'
)
->
setPanelKey
(
PhabricatorLinkProfilePanel
::
PANELKEY
)
->
setPanelProperty
(
'icon'
,
'maniphest'
)
->
setPanelProperty
(
'name'
,
pht
(
'Open Tasks'
))
->
setPanelProperty
(
'uri'
,
$uri
);
}
$have_differential
=
PhabricatorApplication
::
isClassInstalledForViewer
(
'PhabricatorDifferentialApplication'
,
$viewer
);
if
(
$have_differential
)
{
$uri
=
urisprintf
(
'/differential/?authors=%s#R'
,
$object
->
getPHID
());
$panels
[]
=
$this
->
newPanel
()
->
setBuiltinKey
(
'revisions'
)
->
setPanelKey
(
PhabricatorLinkProfilePanel
::
PANELKEY
)
->
setPanelProperty
(
'icon'
,
'differential'
)
->
setPanelProperty
(
'name'
,
pht
(
'Revisions'
))
->
setPanelProperty
(
'uri'
,
$uri
);
}
$have_diffusion
=
PhabricatorApplication
::
isClassInstalledForViewer
(
'PhabricatorDiffusionApplication'
,
$viewer
);
if
(
$have_diffusion
)
{
$uri
=
urisprintf
(
'/audit/?authors=%s#R'
,
$object
->
getPHID
());
$panels
[]
=
$this
->
newPanel
()
->
setBuiltinKey
(
'commits'
)
->
setPanelKey
(
PhabricatorLinkProfilePanel
::
PANELKEY
)
->
setPanelProperty
(
'icon'
,
'diffusion'
)
->
setPanelProperty
(
'name'
,
pht
(
'Commits'
))
->
setPanelProperty
(
'uri'
,
$uri
);
}
$panels
[]
=
$this
->
newPanel
()
->
setBuiltinKey
(
self
::
PANEL_MANAGE
)
->
setPanelKey
(
PhabricatorPeopleManageProfilePanel
::
PANELKEY
);
return
$panels
;
}
}
Event Timeline
Log In to Comment