Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100114747
PeopleUserLogGarbageCollector.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, Jan 28, 07:02
Size
644 B
Mime Type
text/x-php
Expires
Thu, Jan 30, 07:02 (2 d)
Engine
blob
Format
Raw Data
Handle
23902984
Attached To
rPH Phabricator
PeopleUserLogGarbageCollector.php
View Options
<?php
final
class
PeopleUserLogGarbageCollector
extends
PhabricatorGarbageCollector
{
const
COLLECTORCONST
=
'user.logs'
;
public
function
getCollectorName
()
{
return
pht
(
'User Activity Logs'
);
}
public
function
getDefaultRetentionPolicy
()
{
return
phutil_units
(
'180 days in seconds'
);
}
protected
function
collectGarbage
()
{
$table
=
new
PhabricatorUserLog
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
queryfx
(
$conn_w
,
'DELETE FROM %T WHERE dateCreated < %d LIMIT 100'
,
$table
->
getTableName
(),
$this
->
getGarbageEpoch
());
return
(
$conn_w
->
getAffectedRows
()
==
100
);
}
}
Event Timeline
Log In to Comment