friendica/src/Worker/RemoveContact.php

26 lines
494 B
PHP
Raw Normal View History

2017-11-17 23:16:34 +01:00
<?php
/**
* @file src/Worker/RemoveContact.php
* @brief Removes orphaned data from deleted contacts
*/
namespace Friendica\Worker;
use Friendica\Core\Config;
2017-11-18 06:12:57 +01:00
use dba;
2017-11-17 23:16:34 +01:00
require_once 'include/dba.php';
2017-11-17 23:16:34 +01:00
class RemoveContact {
public static function execute($id) {
// Only delete if the contact doesn't exist (anymore)
$r = dba::exists('contact', ['id' => $id]);
2017-11-17 23:16:34 +01:00
if ($r) {
return;
}
// Now we delete all the depending table entries
dba::delete('contact', ['id' => $id]);
2017-11-17 23:16:34 +01:00
}
}