Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102224166
PhabricatorSettingsPanelActivity.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, Feb 18, 11:07
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Feb 20, 11:07 (2 d)
Engine
blob
Format
Raw Data
Handle
24310489
Attached To
rPH Phabricator
PhabricatorSettingsPanelActivity.php
View Options
<?php
final
class
PhabricatorSettingsPanelActivity
extends
PhabricatorSettingsPanel
{
public
function
isEditableByAdministrators
()
{
return
true
;
}
public
function
getPanelKey
()
{
return
'activity'
;
}
public
function
getPanelName
()
{
return
pht
(
'Activity Logs'
);
}
public
function
getPanelGroup
()
{
return
pht
(
'Sessions and Logs'
);
}
public
function
isEnabled
()
{
return
true
;
}
public
function
processRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getUser
();
$user
=
$this
->
getUser
();
$logs
=
id
(
new
PhabricatorPeopleLogQuery
())
->
setViewer
(
$viewer
)
->
withRelatedPHIDs
(
array
(
$user
->
getPHID
()))
->
execute
();
$phids
=
array
();
foreach
(
$logs
as
$log
)
{
$phids
[]
=
$log
->
getUserPHID
();
$phids
[]
=
$log
->
getActorPHID
();
}
if
(
$phids
)
{
$handles
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
$phids
)
->
execute
();
}
else
{
$handles
=
array
();
}
$table
=
id
(
new
PhabricatorUserLogView
())
->
setUser
(
$viewer
)
->
setLogs
(
$logs
)
->
setHandles
(
$handles
);
$panel
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
pht
(
'Account Activity Logs'
))
->
appendChild
(
$table
);
return
$panel
;
}
}
Event Timeline
Log In to Comment