mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
26 lines
340 B
PHP
26 lines
340 B
PHP
<?php
|
|
|
|
namespace Zotlabs\Daemon;
|
|
|
|
require_once('include/connections.php');
|
|
|
|
/*
|
|
* Daemon to remove 'item' resources in the background from a removed connection
|
|
*/
|
|
|
|
class Delxitems {
|
|
|
|
static public function run($argc, $argv) {
|
|
|
|
cli_startup();
|
|
|
|
if($argc != 3) {
|
|
return;
|
|
}
|
|
|
|
remove_abook_items($argv[1], $argv[2]);
|
|
|
|
return;
|
|
}
|
|
}
|