Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1086267
PeopleUserLogGarbageCollector.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
457 B
Referenced Files
None
Subscribers
None
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
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Jun 30, 12:54 AM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
267871
Default Alt Text
PeopleUserLogGarbageCollector.php (457 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment