| 1 |
<?php |
| 2 |
/** |
| 3 |
* Core Functions for WP Analytify |
| 4 |
* |
| 5 |
* This file now includes all the split core function files for better organization. |
| 6 |
* All functions are kept as standalone functions for simplicity and backward compatibility. |
| 7 |
* |
| 8 |
* @package WP_Analytify |
| 9 |
* @since 8.0.0 |
| 10 |
*/ |
| 11 |
|
| 12 |
// Include all split core function files. |
| 13 |
require_once __DIR__ . '/core-traits/dates.php'; |
| 14 |
require_once __DIR__ . '/core-traits/utilities.php'; |
| 15 |
require_once __DIR__ . '/core-traits/admin-footer.php'; |
| 16 |
require_once __DIR__ . '/core-traits/dashboard.php'; |
| 17 |
require_once __DIR__ . '/core-traits/profile-helpers.php'; |
| 18 |
require_once __DIR__ . '/core-traits/functions-class.php'; |
| 19 |
|
| 20 |
// The main file is now much cleaner and organized! |
| 21 |
// All functionality is preserved in the included files. |
| 22 |
|