1
0
mirror of https://github.com/chylex/Nextcloud-News.git synced 2025-05-13 01:34:05 +02:00
Nextcloud-News/lib/Hooks/User.php
2018-12-14 07:54:43 +01:00

37 lines
936 B
PHP

<?php
/**
* Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Alessandro Cosentino <cosenal@gmail.com>
* @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright 2012 Alessandro Cosentino
* @copyright 2012-2014 Bernhard Posselt
*/
namespace OCA\News\Hooks;
use OCA\News\AppInfo\Application;
use OCA\News\Service\ItemService;
use OCA\News\Service\FeedService;
use OCA\News\Service\FolderService;
class User
{
public static function deleteUser($params)
{
$userId = $params['uid'];
$app = new Application();
$container = $app->getContainer();
// order is important!
$container->query(ItemService::class)->deleteUser($userId);
$container->query(FeedService::class)->deleteUser($userId);
$container->query(FolderService::class)->deleteUser($userId);
}
}