# bbp-core/2.0.0/includes/admin/options/options_users.php

Forumax – AI Powered Advanced Community Forum Plugin, version 2.0.0. 58 lines.

- Page: https://pluginprobe.com/plugins/bbp-core/2.0.0/code/includes/admin/options/options_users.php
- Raw: https://pluginprobe.com/plugins/bbp-core/2.0.0/raw/includes/admin/options/options_users.php
- Modified: 2026-01-01T11:09:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/bbp-core/2.0.0/code/includes/admin/options/options_users.php#L10-L20`.

```php
<?php
// Users
CSF::createSection($prefix, array(
    'title' => esc_html__('Users Details', 'forumax'),
    'icon' => 'dashicons dashicons-admin-users',
    'subsection' => true,
    'fields' => array(
        array(
            'id' => 'user_details_header',
            'title' => esc_html__('User Details', 'forumax'),
            'type' => 'heading',
        ),
        array(
            'title' => esc_html__('User Menu Background', 'forumax'),
            'subtitle' => esc_html__('Select a pre-designed banner background style.', 'forumax'),
            'id' => 'user_bg',
            'type' => 'image_select',
            'default' => 'color',
            'options' => forumax_banner_bg_style()
        ),
        array(
            'title' => esc_html__('Key master Icon', 'forumax'),
            'id' => 'keymaster_icon',
            'type' => 'media',
            'compiler' => true,
            'default' => [
                'url' => FORUMAX_IMG . 'icon/keymaster.svg'
            ]
        ),
        array(
            'title' => esc_html__('Moderator Icon', 'forumax'),
            'id' => 'moderator_icon',
            'type' => 'media',
            'compiler' => true,
            'default' => [
                'url' => FORUMAX_IMG . 'icon/moderator.svg'
            ]
        ),
        array(
            'title' => esc_html__('Participant Icon', 'forumax'),
            'id' => 'participant_icon',
            'type' => 'media',
            'compiler' => true,
            'default' => [
                'url' => FORUMAX_IMG . 'icon/participants.svg'
            ]
        ),
        array(
            'title' => esc_html__('Blocked Icon', 'forumax'),
            'id' => 'blocked_icon',
            'type' => 'media',
            'compiler' => true,
            'default' => [
                'url' => FORUMAX_IMG . 'icon/block-user.svg'
            ]
        )
    )
));
```
