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 / classes / analytify-addon.php

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

32 lines 770 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName -- File naming is acceptable
2 /**
3 * Analytify Pro Addon base class.
4 *
5 * This class serves as the base class for all Analytify Pro addons,
6 * providing common functionality and initialization.
7 *
8 * @package WP_Analytify
9 * @since 1.0.0
10 */
11
12 // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName -- File name follows project convention
13
14 /**
15 * Analytify Pro Addon class.
16 *
17 * @package WP_Analytify
18 * @since 1.0.0
19 */
20 class AnalytifyPro_Addon extends Analytify_Base {
21
22 /**
23 * Constructor.
24 *
25 * @param string $plugin_file_path The path to the plugin file.
26 */
27 public function __construct( $plugin_file_path ) {
28 $this->is_addon = true;
29 parent::__construct( $plugin_file_path );
30 }
31 }
32