Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94028409
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
Tue, Dec 3, 08:49
Size
2 KB
Mime Type
text/x-php
Expires
Thu, Dec 5, 08:49 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22716375
Attached To
rPH Phabricator
PhabricatorPeopleProfilePanelEngine.php
View Options
<?php
final
class
PhabricatorPeopleProfilePanelEngine
extends
PhabricatorProfilePanelEngine
{
const
PANEL_PROFILE
=
'people.profile'
;
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
);
}
return
$panels
;
}
}
Event Timeline
Log In to Comment