PluginProbe
Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) / trunk
Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) vtrunk
9.1.2 9.1.1 9.1.0 9.0.2 9.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.3.0 1.3.1 1.3.2 All 153 releases
wp-analytify / inc / analytify-core-functions.php

analytify-core-functions.php in Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) trunk, at inc/analytify-core-functions.php

22 lines 756 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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