| 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 |
|