Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93058438
PhabricatorPeopleController.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
Mon, Nov 25, 21:30
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Nov 27, 21:30 (2 d)
Engine
blob
Format
Raw Data
Handle
22564739
Attached To
rPH Phabricator
PhabricatorPeopleController.php
View Options
<?php
abstract
class
PhabricatorPeopleController
extends
PhabricatorController
{
public
function
shouldRequireAdmin
()
{
return
true
;
}
public
function
buildSideNavView
()
{
$nav
=
new
AphrontSideNavFilterView
();
$nav
->
setBaseURI
(
new
PhutilURI
(
$this
->
getApplicationURI
()));
$viewer
=
$this
->
getRequest
()->
getUser
();
id
(
new
PhabricatorPeopleSearchEngine
())
->
setViewer
(
$viewer
)
->
addNavigationItems
(
$nav
->
getMenu
());
if
(
$viewer
->
getIsAdmin
())
{
$nav
->
addLabel
(
pht
(
'User Administration'
));
if
(
PhabricatorAuthProviderLDAP
::
getLDAPProvider
())
{
$nav
->
addFilter
(
'ldap'
,
pht
(
'Import from LDAP'
));
}
$nav
->
addFilter
(
'logs'
,
pht
(
'Activity Logs'
));
}
return
$nav
;
}
public
function
buildApplicationMenu
()
{
return
$this
->
buildSideNavView
()->
getMenu
();
}
public
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
$viewer
=
$this
->
getRequest
()->
getUser
();
if
(
$viewer
->
getIsAdmin
())
{
$crumbs
->
addAction
(
id
(
new
PHUIListItemView
())
->
setName
(
pht
(
'Create New User'
))
->
setHref
(
$this
->
getApplicationURI
(
'create/'
))
->
setIcon
(
'fa-plus-square'
));
}
return
$crumbs
;
}
}
Event Timeline
Log In to Comment