1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * This file is part of the ForkBB <https://github.com/forkbb>.
- *
- * @copyright (c) Visman <mio.visman@yandex.ru, https://github.com/MioVisman>
- * @license The MIT License (MIT)
- */
- declare(strict_types=1);
- namespace ForkBB\Models\Pages\Admin\Users;
- use ForkBB\Models\Page;
- use ForkBB\Models\Pages\Admin\Users;
- class Promote extends Users
- {
- /**
- * Продвигает пользователя
- */
- public function promote(array $args, string $method): Page
- {
- if (! $this->c->Csrf->verify($args['token'], 'AdminUserPromote', $args)) {
- return $this->c->Message->message($this->c->Csrf->getError());
- }
- $user = $this->c->users->load($args['uid']);
- if (0 < $user->g_promote_next_group * $user->g_promote_min_posts) {
- $user->group_id = $user->g_promote_next_group;
- $this->c->users->update($user);
- }
- return $this->c->Redirect->page('ViewPost', ['id' => $args['pid']])->message('User promote redirect');
- }
- }
|