aboutsummaryrefslogblamecommitdiffstats
path: root/Zotlabs/Daemon/Delxitems.php
blob: 264354ca0c8c8224524dd620fcce0bb402ffd9ec (plain) (tree)
























                                                                                
<?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;
	}
}