PluginProbe
Pixelavo – Server Side Tracking & Pixel + AI Ads Tools / 1.2.2
Pixelavo – Server Side Tracking & Pixel + AI Ads Tools v1.2.2
1.5.5 1.5.4 trunk 1.0.0 1.0.1 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 All 47 releases
pixelavo / pixelavo.php

pixelavo.php in Pixelavo – Server Side Tracking & Pixel + AI Ads Tools 1.2.2, at pixelavo.php

39 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Plugin Name: Pixelavo - Facebook Pixel Analytics
5 * Description: Add facebook pixel to your website to track the actions people take when they interact with it.
6 * Plugin URI: https://hasthemes.com/plugins/
7 * Author: HasThemes
8 * Author URI: https://hasthemes.com/
9 * Version: 1.2.2
10 * License: GPL v2 or later
11 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
12 * Text Domain: pixelavo
13 * Domain Path: /languages
14 */
15
16 /**
17 * Exit if accessed directly
18 */
19 if (!defined('ABSPATH')) {
20 exit;
21 }
22
23 /**
24 * Plugin const
25 */
26 define('PIXELAVO_VERSION', '1.2.2');
27 define('PIXELAVO_PL_ROOT', __FILE__);
28 define('PIXELAVO_PL_URL', plugins_url('/', PIXELAVO_PL_ROOT));
29 define('PIXELAVO_PL_PATH', plugin_dir_path(PIXELAVO_PL_ROOT));
30 define('PIXELAVO_DIR_URL', plugin_dir_url(PIXELAVO_PL_ROOT));
31 define('PIXELAVO_PLUGIN_BASE', plugin_basename(PIXELAVO_PL_ROOT));
32
33 global $pixelavoEventsLocalizedData;
34 $pixelavoEventsLocalizedData = [];
35
36 /**
37 * Require Files
38 */
39 require_once (PIXELAVO_PL_PATH . 'includes/base.php');