game/modules_data/moder/unusedeletinfo.php

33 lines
966 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
if (!defined('GAME')) {
die();
}
if ($p['deletInfo'] != 1) {
$uer = 'У Вас нет прав на использование данного заклятия';
return;
}
$uu = \Core\Db::getRow('select id, login, info_delete from users where login = ? order by id limit 1', [$_POST['logingo']]);
if (!isset($uu['id'])) {
$uer = 'Персонаж не найден.';
return;
}
if ($uu['info_delete'] <= time()) {
$uer = 'Персонаж не обезличен';
return;
}
(new \Moderation\Moderation($uu['id']))->undepersonalize();
$cmsg = new ChatMessage();
$cmsg->setRoom($u->info['room']);
$cmsg->setText("[img[items/uncui.gif]] Персонаж {$uu['login']} больше не под подозрением.");
$cmsg->setType(6);
$cmsg->setTypeTime(1);
(new Chat())->sendMsg($cmsg);
$uer = 'Вы успешно сняли заклятие обезличивания с персонажа "' . $uu['login'] . '".<br>';