3 * @file mod/removeme.php
6 use Friendica\Core\L10n;
7 use Friendica\Core\System;
8 use Friendica\Model\User;
10 function removeme_post(App $a)
16 if (x($_SESSION, 'submanage') && intval($_SESSION['submanage'])) {
20 if ((!x($_POST, 'qxz_password')) || (!strlen(trim($_POST['qxz_password'])))) {
24 if ((!x($_POST, 'verify')) || (!strlen(trim($_POST['verify'])))) {
28 if ($_POST['verify'] !== $_SESSION['remove_account_verify']) {
32 if (User::authenticate($a->user, trim($_POST['qxz_password']))) {
33 User::remove($a->user['uid']);
38 function removeme_content(App $a)
41 goaway(System::baseUrl());
44 $hash = random_string();
46 require_once("mod/settings.php");
49 $_SESSION['remove_account_verify'] = $hash;
51 $tpl = get_markup_template('removeme.tpl');
52 $o = replace_macros($tpl, [
53 '$basedir' => System::baseUrl(),
55 '$title' => L10n::t('Remove My Account'),
56 '$desc' => L10n::t('This will completely remove your account. Once this has been done it is not recoverable.'),
57 '$passwd' => L10n::t('Please enter your password for verification:'),
58 '$submit' => L10n::t('Remove My Account')