Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92661884
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
Fri, Nov 22, 12:49
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 24, 12:49 (1 d, 17 h)
Engine
blob
Format
Raw Data
Handle
22480707
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