# supportcandy/3.4.7/includes/admin/settings/index.php

SupportCandy – AI Customer Support Ticket System &amp; Live Chatbot Agent, version 3.4.7. 36 lines.

- Page: https://pluginprobe.com/plugins/supportcandy/3.4.7/code/includes/admin/settings/index.php
- Raw: https://pluginprobe.com/plugins/supportcandy/3.4.7/raw/includes/admin/settings/index.php
- Modified: 2026-05-26T07:12: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/supportcandy/3.4.7/code/includes/admin/settings/index.php#L10-L20`.

```php
<?php
// Load general settings.
foreach ( glob( __DIR__ . '/general-settings/*.php' ) as $filename ) {
	include_once $filename;
}

// Load dashboard settings.
foreach ( glob( __DIR__ . '/dashboard-settings/*.php' ) as $filename ) {
	include_once $filename;
}

// Load text editor settings.
foreach ( glob( __DIR__ . '/text-editor-settings/*.php' ) as $filename ) {
	include_once $filename;
}

// Load miscellaneaous settings.
foreach ( glob( __DIR__ . '/miscellaneous-settings/*.php' ) as $filename ) {
	include_once $filename;
}

// Load working hrs.
foreach ( glob( __DIR__ . '/working-hrs/*.php' ) as $filename ) {
	include_once $filename;
}

// Load appearence.
foreach ( glob( __DIR__ . '/appearence/*.php' ) as $filename ) {
	include_once $filename;
}

// Load appearence.
foreach ( glob( __DIR__ . '/ticket-tags/*.php' ) as $filename ) {
	include_once $filename;
}

```
