| 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.1.3 |
| 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.1.3'); |
| 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'); |