Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F114422211
PhabricatorPeopleProfileController.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
Sun, May 25, 19:17
Size
1 KB
Mime Type
text/x-php
Expires
Tue, May 27, 19:17 (2 d)
Engine
blob
Format
Raw Data
Handle
26396428
Attached To
rPH Phabricator
PhabricatorPeopleProfileController.php
View Options
<?php
abstract
class
PhabricatorPeopleProfileController
extends
PhabricatorPeopleController
{
private
$user
;
private
$profileMenu
;
public
function
shouldRequireAdmin
()
{
return
false
;
}
public
function
setUser
(
PhabricatorUser
$user
)
{
$this
->
user
=
$user
;
return
$this
;
}
public
function
getUser
()
{
return
$this
->
user
;
}
public
function
buildApplicationMenu
()
{
$menu
=
$this
->
newApplicationMenu
();
$profile_menu
=
$this
->
getProfileMenu
();
if
(
$profile_menu
)
{
$menu
->
setProfileMenu
(
$profile_menu
);
}
return
$menu
;
}
protected
function
getProfileMenu
()
{
if
(!
$this
->
profileMenu
)
{
$user
=
$this
->
getUser
();
if
(
$user
)
{
$viewer
=
$this
->
getViewer
();
$engine
=
id
(
new
PhabricatorPeopleProfilePanelEngine
())
->
setViewer
(
$viewer
)
->
setProfileObject
(
$user
);
$this
->
profileMenu
=
$engine
->
buildNavigation
();
}
}
return
$this
->
profileMenu
;
}
protected
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
$user
=
$this
->
getUser
();
if
(
$user
)
{
$crumbs
->
addTextCrumb
(
$user
->
getUsername
(),
urisprintf
(
'/p/%s/'
,
$user
->
getUsername
()));
}
return
$crumbs
;
}
}
Event Timeline
Log In to Comment