PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 2.4.2
Forumax – AI Powered Advanced Community Forum Plugin v2.4.2
2.4.4 2.4.3 2.4.2 2.4.1 2.4.0 trunk 1.0.8 1.1.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 2.0.0 2.1.0 All 29 releases
bbp-core / includes / admin / options / options_users.php

options_users.php in Forumax – AI Powered Advanced Community Forum Plugin 2.4.2, at includes/admin/options/options_users.php

58 lines 1.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 // Users
3 CSF::createSection($prefix, array(
4 'title' => esc_html__('Users Details', 'forumax'),
5 'icon' => 'dashicons dashicons-admin-users',
6 'subsection' => true,
7 'fields' => array(
8 array(
9 'id' => 'user_details_header',
10 'title' => esc_html__('User Details', 'forumax'),
11 'type' => 'heading',
12 ),
13 array(
14 'title' => esc_html__('User Menu Background', 'forumax'),
15 'subtitle' => esc_html__('Select a pre-designed banner background style.', 'forumax'),
16 'id' => 'user_bg',
17 'type' => 'image_select',
18 'default' => 'color',
19 'options' => forumax_banner_bg_style()
20 ),
21 array(
22 'title' => esc_html__('Key master Icon', 'forumax'),
23 'id' => 'keymaster_icon',
24 'type' => 'media',
25 'compiler' => true,
26 'default' => [
27 'url' => FORUMAX_IMG . 'icon/keymaster.svg'
28 ]
29 ),
30 array(
31 'title' => esc_html__('Moderator Icon', 'forumax'),
32 'id' => 'moderator_icon',
33 'type' => 'media',
34 'compiler' => true,
35 'default' => [
36 'url' => FORUMAX_IMG . 'icon/moderator.svg'
37 ]
38 ),
39 array(
40 'title' => esc_html__('Participant Icon', 'forumax'),
41 'id' => 'participant_icon',
42 'type' => 'media',
43 'compiler' => true,
44 'default' => [
45 'url' => FORUMAX_IMG . 'icon/participants.svg'
46 ]
47 ),
48 array(
49 'title' => esc_html__('Blocked Icon', 'forumax'),
50 'id' => 'blocked_icon',
51 'type' => 'media',
52 'compiler' => true,
53 'default' => [
54 'url' => FORUMAX_IMG . 'icon/block-user.svg'
55 ]
56 )
57 )
58 ));