-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroi-insights.php
More file actions
46 lines (40 loc) · 1.81 KB
/
roi-insights.php
File metadata and controls
46 lines (40 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
/**
* Plugin Name: ROI Insights — Google Tag Manager, Analytics, Tracking Pixels & Call Tracking
* Plugin URI: https://roiknowledge.com
* Description: All-in-one tag management, ad pixel setup, marketing attribution, call tracking, and AI-powered analytics dashboard for WordPress. Free forever — no credit card required.
* Version: 1.0.0
* Requires at least: 6.3
* Tested up to: 6.9
* Requires PHP: 7.4
* Author: MosierData
* Author URI: https://mosierdata.com
* License: GPL-2.0+
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: roi-insights
*
* @package ROI_Insights
*/
/*
* ROI Insights — Google Tag Manager, Analytics, Tracking Pixels & Call Tracking
* Copyright (C) 2026 MosierData
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
defined( 'ABSPATH' ) || exit;
define( 'ROI_INSIGHTS_VERSION', '1.0.0' );
define( 'ROI_INSIGHTS_FILE', __FILE__ );
define( 'ROI_INSIGHTS_DIR', plugin_dir_path( __FILE__ ) );
define( 'ROI_INSIGHTS_URL', plugin_dir_url( __FILE__ ) );
require_once ROI_INSIGHTS_DIR . 'includes/class-roi-insights.php';
register_activation_hook( __FILE__, array( 'ROI_Insights', 'activate' ) );
register_deactivation_hook( __FILE__, array( 'ROI_Insights', 'deactivate' ) );
add_action( 'plugins_loaded', array( 'ROI_Insights', 'get_instance' ) );