PluginProbe
Pixelavo – Server Side Tracking & Pixel + AI Ads Tools / trunk
Pixelavo – Server Side Tracking & Pixel + AI Ads Tools vtrunk
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 trunk, at pixelavo.php

41 lines 1.1 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 - Server Side Tracking & Pixel + AI Ads Tools
5 * Description: Add pixel to your website to track the actions people take when they interact with it. Includes AI Ad Copy Generator and Marketing Consultant.
6 * Plugin URI: https://pixelavo.com/
7 * Author: HasThemes
8 * Author URI: https://hasthemes.com/
9 * Version: 1.5.5
10 * Requires at least: 5.0
11 * Requires PHP: 7.4
12 * License: GPL v2 or later
13 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
14 * Text Domain: pixelavo
15 * Domain Path: /languages
16 */
17
18 /**
19 * Exit if accessed directly
20 */
21 if (!defined('ABSPATH')) {
22 exit;
23 }
24
25 /**
26 * Plugin const
27 */
28 define('PIXELAVO_VERSION', '1.5.5');
29 define('PIXELAVO_PL_ROOT', __FILE__);
30 define('PIXELAVO_PL_URL', plugins_url('/', PIXELAVO_PL_ROOT));
31 define('PIXELAVO_PL_PATH', plugin_dir_path(PIXELAVO_PL_ROOT));
32 define('PIXELAVO_DIR_URL', plugin_dir_url(PIXELAVO_PL_ROOT));
33 define('PIXELAVO_PLUGIN_BASE', plugin_basename(PIXELAVO_PL_ROOT));
34
35 global $pixelavoEventsLocalizedData;
36 $pixelavoEventsLocalizedData = [];
37
38 /**
39 * Require Files
40 */
41 require_once (PIXELAVO_PL_PATH . 'includes/base.php');