24 lines
		
	
	
	
		
			498 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			498 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @file include/remove_contact.php
 | 
						|
 * @brief Removes orphaned data from deleted contacts
 | 
						|
 */
 | 
						|
 | 
						|
use \Friendica\Core\Config;
 | 
						|
 | 
						|
function remove_contact_run($argv, $argc) {
 | 
						|
	if ($argc != 2) {
 | 
						|
		return;
 | 
						|
	}
 | 
						|
 | 
						|
	$id = intval($argv[1]);
 | 
						|
 | 
						|
	// Only delete if the contact doesn't exist (anymore)
 | 
						|
	$r = q("SELECT `id` FROM `contact` WHERE `id` = %d", intval($id));
 | 
						|
	if (dbm::is_result($r)) {
 | 
						|
		return;
 | 
						|
	}
 | 
						|
 | 
						|
	// Now we delete all the depending table entries
 | 
						|
	dba::delete('contact', array('id' => $id));
 | 
						|
}
 |