Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F123167940
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
Fri, Jul 25, 10:15
Size
457 B
Mime Type
text/x-php
Expires
Sun, Jul 27, 10:15 (2 d)
Engine
blob
Format
Raw Data
Handle
27638052
Attached To
rPH Phabricator
PeopleUserLogGarbageCollector.php
View Options
<?php
final
class
PeopleUserLogGarbageCollector
extends
PhabricatorGarbageCollector
{
public
function
collectGarbage
()
{
$ttl
=
phutil_units
(
'180 days in seconds'
);
$table
=
new
PhabricatorUserLog
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
queryfx
(
$conn_w
,
'DELETE FROM %T WHERE dateCreated < %d LIMIT 100'
,
$table
->
getTableName
(),
time
()
-
$ttl
);
return
(
$conn_w
->
getAffectedRows
()
==
100
);
}
}
Event Timeline
Log In to Comment