Server IP : 162.0.217.223 / Your IP : 216.73.216.153 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/yeslicense.org/wp-content/plugins/supportcandy/includes/admin/ |
Upload File : |
<?php // Load tickets. foreach ( glob( __DIR__ . '/tickets/*.php' ) as $filename ) { include_once $filename; } // Load agent settings. foreach ( glob( __DIR__ . '/agent-settings/*.php' ) as $filename ) { include_once $filename; } // Load ticket form settings. foreach ( glob( __DIR__ . '/custom-fields/*.php' ) as $filename ) { include_once $filename; } // Load ticket list settings. foreach ( glob( __DIR__ . '/ticket-list/*.php' ) as $filename ) { include_once $filename; } // Load email notification settings. foreach ( glob( __DIR__ . '/email-notifications/*.php' ) as $filename ) { include_once $filename; } // Load settings. foreach ( glob( __DIR__ . '/settings/*.php' ) as $filename ) { include_once $filename; } // Miscellaneous classes. foreach ( glob( __DIR__ . '/misc/*.php' ) as $filename ) { include_once $filename; } // Recent activites classes. foreach ( glob( __DIR__ . '/recent-activities/*.php' ) as $filename ) { include_once $filename; } // Customer classes. foreach ( glob( __DIR__ . '/customers/*.php' ) as $filename ) { include_once $filename; }