PluginProbe
SupportCandy – AI Customer Support Ticket System & Live Chatbot Agent / 3.4.7
SupportCandy – AI Customer Support Ticket System & Live Chatbot Agent v3.4.7
3.5.3 3.5.2 3.5.1 3.4.9 3.5.0 3.4.8 3.4.7 trunk 2.3.1 3.3.6 3.3.7 3.3.8 3.3.9 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6
supportcandy / includes / admin / settings / index.php

index.php in SupportCandy – AI Customer Support Ticket System & Live Chatbot Agent 3.4.7, at includes/admin/settings/index.php

36 lines 872 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 // Load general settings.
3 foreach ( glob( __DIR__ . '/general-settings/*.php' ) as $filename ) {
4 include_once $filename;
5 }
6
7 // Load dashboard settings.
8 foreach ( glob( __DIR__ . '/dashboard-settings/*.php' ) as $filename ) {
9 include_once $filename;
10 }
11
12 // Load text editor settings.
13 foreach ( glob( __DIR__ . '/text-editor-settings/*.php' ) as $filename ) {
14 include_once $filename;
15 }
16
17 // Load miscellaneaous settings.
18 foreach ( glob( __DIR__ . '/miscellaneous-settings/*.php' ) as $filename ) {
19 include_once $filename;
20 }
21
22 // Load working hrs.
23 foreach ( glob( __DIR__ . '/working-hrs/*.php' ) as $filename ) {
24 include_once $filename;
25 }
26
27 // Load appearence.
28 foreach ( glob( __DIR__ . '/appearence/*.php' ) as $filename ) {
29 include_once $filename;
30 }
31
32 // Load appearence.
33 foreach ( glob( __DIR__ . '/ticket-tags/*.php' ) as $filename ) {
34 include_once $filename;
35 }
36