XoopsModules25x /
suico
| 1 | <?php declare(strict_types=1); |
||
| 2 | |||
| 3 | /* |
||
| 4 | You may not change or alter any portion of this comment or credits |
||
| 5 | of supporting developers from this source code or any supporting source code |
||
| 6 | which is considered copyrighted (c) material of the original comment or credit authors. |
||
| 7 | |||
| 8 | This program is distributed in the hope that it will be useful, |
||
| 9 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
| 10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
||
| 11 | */ |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @copyright XOOPS Project https://xoops.org/ |
||
| 15 | * @license GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html) |
||
| 16 | * @author Marcello Brandão aka Suico |
||
| 17 | * @author XOOPS Development Team |
||
| 18 | * @since |
||
| 19 | */ |
||
| 20 | |||
| 21 | use Xmf\Request; |
||
| 22 | use XoopsModules\Yogurt; |
||
| 23 | |||
| 24 | require __DIR__ . '/header.php'; |
||
| 25 | |||
| 26 | if (!$GLOBALS['xoopsSecurity']->check()) { |
||
| 27 | redirect_header(Request::getString('HTTP_REFERER', '', 'SERVER'), 3, _MD_YOGURT_TOKENEXPIRED); |
||
| 28 | } |
||
| 29 | |||
| 30 | $uid = Request::getInt('uid', 0, 'POST'); |
||
| 31 | /** |
||
| 32 | * Creating the factory loading the picture changing its caption |
||
| 33 | */ |
||
| 34 | $suspensionsFactory = new Yogurt\SuspensionsHandler( |
||
| 35 | $xoopsDB |
||
| 36 | ); |
||
| 37 | $suspension = $suspensionsFactory->create(false); |
||
| 38 | $suspension->load($uid); |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 39 | |||
| 40 | if ($xoopsUser->isAdmin(1)) { |
||
| 41 | /** @var \XoopsMemberHandler $memberHandler */ |
||
| 42 | $memberHandler = xoops_getHandler('member'); |
||
| 43 | $thisUser = $memberHandler->getUser($uid); |
||
| 44 | |||
| 45 | $thisUser->setVar('email', $suspension->getVar('old_email', 'n')); |
||
| 46 | $thisUser->setVar('pass', $suspension->getVar('old_pass', 'n')); |
||
| 47 | $thisUser->setVar('user_sig', $suspension->getVar('old_signature', 'n')); |
||
| 48 | $memberHandler->insertUser($thisUser); |
||
| 49 | |||
| 50 | $criteria = new Criteria('uid', $uid); |
||
| 51 | $suspensionsFactory->deleteAll($criteria); |
||
| 52 | redirect_header('index.php?uid=' . $uid, 3, _MD_YOGURT_USER_UNSUSPENDED); |
||
| 53 | } |
||
| 54 | |||
| 55 | require dirname(__DIR__, 2) . '/footer.php'; |
||
| 56 |