Page MenuHomestyx hydra

PhabricatorSystemDestructionGarbageCollector.php
No OneTemporary

PhabricatorSystemDestructionGarbageCollector.php

<?php
final class PhabricatorSystemDestructionGarbageCollector
extends PhabricatorGarbageCollector {
const COLLECTORCONST = 'system.destruction.logs';
public function getCollectorName() {
return pht('Destruction Logs');
}
public function getDefaultRetentionPolicy() {
return phutil_units('90 days in seconds');
}
protected function collectGarbage() {
$table = new PhabricatorSystemDestructionLog();
$conn_w = $table->establishConnection('w');
queryfx(
$conn_w,
'DELETE FROM %T WHERE epoch < %d LIMIT 100',
$table->getTableName(),
$this->getGarbageEpoch());
return ($conn_w->getAffectedRows() == 100);
}
}

File Metadata

Mime Type
text/x-php
Expires
Thu, Feb 6, 1:23 AM (8 h, 44 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
33749
Default Alt Text
PhabricatorSystemDestructionGarbageCollector.php (677 B)

Event Timeline