Вход Регистрация
Файл: modules/profile/includes/reset.php
Строк: 27
<?php

/**
 * This file is part of JohnCMS Content Management System.
 *
 * @copyright JohnCMS Community
 * @license   https://opensource.org/licenses/GPL-3.0 GPL-3.0
 * @link      https://johncms.com JohnCMS Project
 */

declare(strict_types=1);

use 
JohncmsUsersUser;

defined('_IN_JOHNCMS') || die('Error: restricted access');

if (
$user->rights >= && $user->rights $user_data->rights) {
    
// Сброс настроек пользователя
    
$title __('Reset user settings');
    
$nav_chain->add(__('Profile'), '?user=' $user_data->id);
    
$nav_chain->add($title);

    (new 
User())->find($user_data->id)
        ->
update(
            [
                
'set_user'  => [],
                
'set_forum' => [],
            ]
        );

    echo 
$view->render(
        
'system::pages/result',
        [
            
'title'    => $title,
            
'type'     => 'alert-success',
            
'message'  => sprintf(__('For user %s default settings were set.'), $user_data->name),
            
'back_url' => '?user=' $user_data->id,
        ]
    );
}
Онлайн: 1
Реклама