Current File : /home/escuelai/public_html/wp-content/plugins/pixelyoursite/includes/functions-common.php |
<?php
namespace PixelYourSite;
use URL;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
function isWcfActive() {
return function_exists('wcf');
}
function isPinterestActive( $checkCompatibility = true ) {
if ( ! function_exists( 'is_plugin_active' ) ) {
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
}
$active = is_plugin_active( 'pixelyoursite-pinterest/pixelyoursite-pinterest.php' );
if ( $checkCompatibility ) {
return $active && ! isPinterestVersionIncompatible();
} else {
return $active;
}
}
function getUserRoles() {
$user = wp_get_current_user();
if ( $user->ID !== 0 ) {
$user_roles = implode( ',', $user->roles );
} else {
$user_roles = 'guest';
}
return $user_roles;
}
function isPinterestVersionIncompatible() {
if ( ! function_exists( 'get_plugin_data' ) ) {
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
}
$data = get_plugin_data( WP_PLUGIN_DIR . '/pixelyoursite-pinterest/pixelyoursite-pinterest.php', false, false );
return ! version_compare( $data['Version'], PYS_FREE_PINTEREST_MIN_VERSION, '>=' );
}
function isSuperPackActive( $checkCompatibility = true ) {
if ( ! function_exists( 'is_plugin_active' ) ) {
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
}
$active = is_plugin_active( 'pixelyoursite-super-pack/pixelyoursite-super-pack.php' );
if ( $checkCompatibility ) {
return $active && function_exists( 'PixelYourSite\SuperPack' ) && ! isSuperPackVersionIncompatible();
} else {
return $active;
}
}
function isBingActive( $checkCompatibility = true ) {
if ( ! function_exists( 'is_plugin_active' ) ) {
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
}
$active = is_plugin_active( 'pixelyoursite-bing/pixelyoursite-bing.php' );
if ( $checkCompatibility ) {
return $active && ! isBingVersionIncompatible()
&& function_exists( 'PixelYourSite\Bing' )
&& Bing() instanceof Plugin; // false for dummy
} else {
return $active;
}
}
function isBingVersionIncompatible() {
if ( ! function_exists( 'get_plugin_data' ) ) {
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
}
$data = get_plugin_data( WP_PLUGIN_DIR . '/pixelyoursite-bing/pixelyoursite-bing.php', false, false );
return ! version_compare( $data['Version'], PYS_FREE_BING_MIN_VERSION, '>=' );
}
/**
* Check if WooCommerce plugin installed and activated.
*
* @return bool
*/
function isWooCommerceActive() {
return class_exists( 'woocommerce' );
}
/**
* Check if Easy Digital Downloads plugin installed and activated.
*
* @return bool
*/
function isEddActive() {
return function_exists( 'EDD' );
}
/**
* Check if Product Catalog Feed Pro plugin installed and activated.
*
* @return bool
*/
function isProductCatalogFeedProActive() {
return class_exists( 'wpwoof_product_catalog' );
}
/**
* Check if EDD Products Feed Pro plugin installed and activated.
*
* @return bool
*/
function isEddProductsFeedProActive() {
return class_exists( 'Wpeddpcf_Product_Catalog' );
}
function isBoostActive() {
if ( ! function_exists( 'is_plugin_active' ) ) {
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
}
return is_plugin_active( 'boost/boost.php' );
}
/**
* Check if Pixel Cost of goods plugin installed and activated.
*
* @return bool
*/
function isPixelCogActive() {
if ( ! function_exists( 'is_plugin_active' ) ) {
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
}
return is_plugin_active( 'pixel-cost-of-goods/pixel-cost-of-goods.php' );
}
/**
* Check if Smart OpenGraph plugin installed and activated.
*
* @return bool
*/
function isSmartOpenGraphActive() {
if ( ! function_exists( 'is_plugin_active' ) ) {
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
}
return is_plugin_active( 'smart-opengraph/catalog-plugin.php' );
}
/**
* Check if WPML plugin installed and activated.
*
* @return bool
*/
function isWPMLActive() {
if ( ! function_exists( 'is_plugin_active' ) ) {
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
}
return is_plugin_active( 'sitepress-multilingual-cms/sitepress.php' );
}
function isPhotoCartActive() {
if ( ! function_exists( 'is_plugin_active' ) ) {
include_once(ABSPATH . 'wp-admin/includes/plugin.php');
}
return is_plugin_active( 'sunshine-photo-cart/sunshine-photo-cart.php' );
}
/**
* Clean variables using sanitize_text_field. Arrays are cleaned recursively.
* Non-scalar values are ignored.
*
* @param string|array $var
*
* @return string|array
*/
function deepSanitizeTextField( $var ) {
if ( is_array( $var ) ) {
return array_map( 'deepSanitizeTextField', $var );
} else {
return is_scalar( $var ) ? sanitize_text_field( $var ) : $var;
}
}
function getAvailableUserRoles() {
$wp_roles = new \WP_Roles();
$user_roles = array();
foreach ( $wp_roles->get_names() as $slug => $name ) {
$user_roles[ $slug ] = $name;
}
return $user_roles;
}
function getAvailableProductCog($product) {
$cost_type = get_post_meta( $product->get_id(), '_pixel_cost_of_goods_cost_type', true );
$product_cost = get_post_meta( $product->get_id(), '_pixel_cost_of_goods_cost_val', true );
if(!$product_cost && $product->is_type("variation")) {
$cost_type = get_post_meta( $product->get_parent_id(), '_pixel_cost_of_goods_cost_type', true );
$product_cost = get_post_meta( $product->get_parent_id(), '_pixel_cost_of_goods_cost_val', true );
}
if ($product_cost) {
$cog = array(
'type' => $cost_type,
'val' => $product_cost
);
} else {
$cog_term_val = get_product_cost_by_cat( $product->get_id() );
if ($cog_term_val) {
$cog = array(
'type' => get_product_type_by_cat( $product->get_id() ),
'val' => $cog_term_val
);
} else {
$cog = array(
'type' => get_option( '_pixel_cost_of_goods_cost_type'),
'val' => get_option( '_pixel_cost_of_goods_cost_val')
);
}
}
return $cog;
}
function getAvailableProductCogOrder($order) {
$cost = 0;
$custom_total = 0;
$cat_isset = 0;
$isWithoutTax = get_option( '_pixel_cog_tax_calculating') == 'no';
$shipping = $order->get_shipping_total("edit");
$order_total = $order->get_total('edit') - $shipping;
if($isWithoutTax) {
$order_total -= $order->get_total_tax('edit');
} else {
$order_total -= $order->get_shipping_tax("edit");
}
foreach ( $order->get_items() as $item_id => $item ) {
$product_id = ( isset( $item['variation_id'] ) && 0 != $item['variation_id'] ? $item['variation_id'] : $item['product_id'] );
$product = wc_get_product($product_id);
if(!$product) continue;
$cost_type = get_post_meta( $product->get_id(), '_pixel_cost_of_goods_cost_type', true );
$product_cost = get_post_meta( $product->get_id(), '_pixel_cost_of_goods_cost_val', true );
if(!$product_cost && $product->is_type("variation")) {
$cost_type = get_post_meta( $product->get_parent_id(), '_pixel_cost_of_goods_cost_type', true );
$product_cost = get_post_meta( $product->get_parent_id(), '_pixel_cost_of_goods_cost_val', true );
}
$args = array( 'qty' => 1, 'price' => $product->get_price());
$qlt = $item['quantity'];
if($isWithoutTax) {
$price = wc_get_price_excluding_tax($product, $args);
} else {
$price = wc_get_price_including_tax($product,$args);
}
if ($product_cost) {
$cost = ($cost_type == 'percent') ? $cost + ($price * ($product_cost / 100) * $qlt) : $cost + ($product_cost * $qlt);
$custom_total = $custom_total + ($price * $qlt);
} else {
$product_cost = get_product_cost_by_cat( $product_id );
$cost_type = get_product_type_by_cat( $product_id );
if ($product_cost) {
$cost = ($cost_type == 'percent') ? $cost + ($price * ($product_cost / 100) * $qlt) : $cost + ($product_cost * $qlt);
$custom_total = $custom_total + ($price * $qlt);
$notice = "Category Cost of Goods was used for some products.";
$cat_isset = 1;
} else {
$product_cost = get_option( '_pixel_cost_of_goods_cost_val');
$cost_type = get_option( '_pixel_cost_of_goods_cost_type' );
if ($product_cost) {
$cost = ($cost_type == 'percent') ? (float) $cost + ((float) $price * ((float) $product_cost / 100) * $qlt) : (float) $cost + ((float) $product_cost * $qlt);
$custom_total = $custom_total + ($price * $qlt);
if ($cat_isset == 1) {
$notice = "Global and Category Cost of Goods was used for some products.";
} else {
$notice = "Global Cost of Goods was used for some products.";
}
} else {
$notice = "Some products don't have Cost of Goods.";
}
}
}
}
return $order_total - $cost;
}
function getAvailableProductCogCart() {
$cart_total = 0.0;
$cost = 0;
$notice = '';
$custom_total = 0;
$cat_isset = 0;
$isWithoutTax = get_option( '_pixel_cog_tax_calculating') == 'no';
$shipping = WC()->cart->get_shipping_total();
$cart_total = WC()->cart->get_total('edit') - $shipping;
if($isWithoutTax) {
$cart_total -= WC()->cart->get_total_tax();
} else {
$cart_total -= WC()->cart->get_shipping_tax();
}
foreach ( WC()->cart->cart_contents as $cart_item_key => $item ) {
$product_id = ( isset( $item['variation_id'] ) && 0 != $item['variation_id'] ? $item['variation_id'] : $item['product_id'] );
$product = wc_get_product($product_id);
if(!$product) continue;
$cost_type = get_post_meta( $product->get_id(), '_pixel_cost_of_goods_cost_type', true );
$product_cost = get_post_meta( $product->get_id(), '_pixel_cost_of_goods_cost_val', true );
if(!$product_cost && $product->is_type("variation")) {
$cost_type = get_post_meta( $product->get_parent_id(), '_pixel_cost_of_goods_cost_type', true );
$product_cost = get_post_meta( $product->get_parent_id(), '_pixel_cost_of_goods_cost_val', true );
}
$args = array( 'qty' => 1, 'price' => $product->get_price());
if($isWithoutTax) {
$price = wc_get_price_excluding_tax($product, $args);
} else {
$price = wc_get_price_including_tax($product,$args);
}
$qlt = $item['quantity'];
if ($product_cost) {
$cost = ($cost_type == 'percent') ? $cost + ($price * ($product_cost / 100) * $qlt) : $cost + ($product_cost * $qlt);
$custom_total = $custom_total + ($price * $qlt);
} else {
$product_cost = get_product_cost_by_cat( $product_id );
$cost_type = get_product_type_by_cat( $product_id );
if ($product_cost) {
$cost = ($cost_type == 'percent') ? $cost + ($price * ($product_cost / 100) * $qlt) : $cost + ($product_cost * $qlt);
$custom_total = $custom_total + ($price * $qlt);
$notice = "Category Cost of Goods was used for some products.";
$cat_isset = 1;
} else {
$product_cost = get_option( '_pixel_cost_of_goods_cost_val');
$cost_type = get_option( '_pixel_cost_of_goods_cost_type' );
if ($product_cost) {
$cost = ($cost_type == 'percent') ? $cost + ((float) $price * ((float) $product_cost / 100) * $qlt) : (float) $cost + ((float) $product_cost * $qlt);
$custom_total = $custom_total + ($price * $qlt);
if ($cat_isset == 1) {
$notice = "Global and Category Cost of Goods was used for some products.";
} else {
$notice = "Global Cost of Goods was used for some products.";
}
} else {
$notice = "Some products don't have Cost of Goods.";
}
}
}
}
return $cart_total - $cost;
}
/**
* get_product_type_by_cat.
*
* @version 1.0.0
* @since 1.0.0
*/
function get_product_type_by_cat( $product_id ) {
$term_list = wp_get_post_terms($product_id,'product_cat',array('fields'=>'ids'));
$cost = array();
foreach ($term_list as $term_id) {
$cost[$term_id] = array(
get_term_meta( $term_id, '_pixel_cost_of_goods_cost_val', true ),
get_term_meta( $term_id, '_pixel_cost_of_goods_cost_type', true )
);
}
if ( empty( $cost ) ) {
return '';
} else {
asort( $cost );
$max = end( $cost );
return $max[1];
}
}
/**
* get_product_cost_by_cat.
*
* @version 1.0.0
* @since 1.0.0
*/
function get_product_cost_by_cat( $product_id ) {
$term_list = wp_get_post_terms($product_id,'product_cat',array('fields'=>'ids'));
$cost = array();
foreach ($term_list as $term_id) {
$cost[$term_id] = get_term_meta( $term_id, '_pixel_cost_of_goods_cost_val', true );
}
if ( empty( $cost ) ) {
return '';
} else {
asort( $cost );
$max = end( $cost );
return $max;
}
}
function isDisabledForCurrentRole() {
$user = wp_get_current_user();
$disabled_for = PYS()->getOption( 'do_not_track_user_roles' );
foreach ( (array) $user->roles as $role ) {
if ( in_array( $role, $disabled_for ) ) {
add_action( 'wp_head', function() {
echo "<script type='application/javascript' id='pys-config-warning-user-role'>console.warn('PixelYourSite is disabled for current user role.');</script>\r\n";
} );
return true;
}
}
return false;
}
function pys_round( $val, $precision = 2, $mode = PHP_ROUND_HALF_UP ) {
if ( ! is_numeric( $val ) ) {
$val = floatval( $val );
}
return round( $val, $precision, $mode );
}
/**
* Retrieves parameters values for for current queried object
*
* @return array
*/
function getTheContentParams( $allowedContentTypes = array() ) {
global $post;
$defaults = array(
'on_posts_enabled' => true,
'on_pages_enables' => true,
'on_taxonomies_enabled' => true,
'on_cpt_enabled' => true,
'on_woo_enabled' => true,
'on_edd_enabled' => true,
);
$contentTypes = wp_parse_args( $allowedContentTypes, $defaults );
$params = array();
$cpt = get_post_type();
/**
* POSTS
*/
if ( $contentTypes['on_posts_enabled'] && is_singular( 'post' ) ) {
$params['post_type'] = 'post';
$params['post_id'] = $post->ID;
$params['content_name'] = $post->post_title;
$params['categories'] = implode( ', ', getObjectTerms( 'category', $post->ID ) );
$params['tags'] = implode( ', ', getObjectTerms( 'post_tag', $post->ID ) );
return $params;
}
/**
* PAGES or FRONT PAGE
*/
if ( $contentTypes['on_pages_enables'] && ( is_singular( 'page' ) || is_home() ) ) {
$params['post_type'] = 'page';
$params['post_id'] = is_home() ? null : $post->ID;
$params['content_name'] = is_home() == true ? get_bloginfo( 'name' ) : $post->post_title;
return $params;
}
// WooCommerce Shop page
if ( $contentTypes['on_pages_enables'] && isWooCommerceActive() && is_shop() ) {
$page_id = (int) wc_get_page_id( 'shop' );
$params['post_type'] = 'page';
$params['post_id'] = $page_id;
$params['content_name'] = get_the_title( $page_id );
return $params;
}
/**
* TAXONOMIES
*/
if ( $contentTypes['on_taxonomies_enabled'] && ( is_category() || is_tax() || is_tag() ) ) {
if ( is_category() ) {
$cat = get_query_var( 'cat' );
$term = get_category( $cat );
$params['post_type'] = 'category';
$params['post_id'] = $cat;
$params['content_name'] = $term->name;
} elseif ( is_tag() ) {
$slug = get_query_var( 'tag' );
$term = get_term_by( 'slug', $slug, 'post_tag' );
$params['post_type'] = 'tag';
if($term) {
$params['post_id'] = $term->term_id;
$params['content_name'] = $term->name;
}
} else {
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
$params['post_type'] = get_query_var( 'taxonomy' );
if ( $term ) {
$params['post_id'] = $term->term_id;
$params['content_name'] = $term->name;
}
}
return $params;
}
// WooCommerce Products
if ( $contentTypes['on_woo_enabled'] && isWooCommerceActive() && $cpt == 'product' ) {
$params['post_type'] = 'product';
$params['post_id'] = $post->ID;
$params['content_name'] = $post->post_title;
$params['categories'] = implode( ', ', getObjectTerms( 'product_cat', $post->ID ) );
$params['tags'] = implode( ', ', getObjectTerms( 'product_tag', $post->ID ) );
return $params;
}
// Easy Digital Downloads
if ( $contentTypes['on_edd_enabled'] && isEddActive() && $cpt == 'download' ) {
$params['post_type'] = 'download';
$params['post_id'] = $post->ID;
$params['content_name'] = $post->post_title;
$params['categories'] = implode( ', ', getObjectTerms( 'download_category', $post->ID ) );
$params['tags'] = implode( ', ', getObjectTerms( 'download_tag', $post->ID ) );
return $params;
}
/**
* Custom Post Type should be last one.
*/
// Custom Post Type
if ( $contentTypes['on_cpt_enabled'] && $cpt ) {
// skip products and downloads is plugins are activated
if ( ( isWooCommerceActive() && $cpt == 'product' ) || ( isEddActive() && $cpt == 'download' ) ) {
return $params;
}
// fixes issue #88 from PRO
if ( ! $post instanceof \WP_Post ) {
return $params;
}
$params['post_type'] = $cpt;
$params['post_id'] = $post->ID;
$params['content_name'] = $post->post_title;
$params['tags'] = implode( ', ', getObjectTerms( 'post_tag', $post->ID ) );
$taxonomies = get_post_taxonomies( get_post() );
if ( ! empty( $taxonomies ) && $terms = getObjectTerms( $taxonomies[0], $post->ID ) ) {
$params['categories'] = implode( ', ', $terms );
} else {
$params['categories'] = array();
}
return $params;
}
return array();
}
/**
* @param string $taxonomy Taxonomy name
*
* @return array Array of object term names
*/
function getObjectTerms( $taxonomy, $post_id ) {
$terms = get_the_terms( $post_id, $taxonomy );
$results = array();
if ( is_wp_error( $terms ) || empty ( $terms ) ) {
return array();
}
// decode special chars
foreach ( $terms as $term ) {
$results[] = html_entity_decode( $term->name );
}
return $results;
}
/**
* @param string $taxonomy Taxonomy name
*
* @return array Array of object term names and id
*/
function getObjectTermsWithId( $taxonomy, $post_id ) {
$terms = get_the_terms( $post_id, $taxonomy );
$results = array();
if ( is_wp_error( $terms ) || empty ( $terms ) ) {
return array();
}
// decode special chars
foreach ( $terms as $term ) {
$results[] = [
'name' => html_entity_decode( $term->name ),
'id' => $term->term_id
];
}
return $results;
}
/**
* Sanitize event name. Only letters, numbers and underscores allowed.
*
* @param string $name
*
* @return string
*/
function sanitizeKey( $name ) {
$name = str_replace( ' ', '_', $name );
$name = preg_replace( '/[^0-9a-zA-z_]/', '', $name );
return $name;
}
function getCommonEventParams() {
return array(
'domain' => substr( get_home_url( null, '', 'http' ), 7 ),
'user_roles' => getUserRoles(),
'plugin' => 'PixelYourSite',
);
}
function sanitizeParams( $params ) {
$sanitized = array();
foreach ( $params as $key => $value ) {
// skip empty (but not zero)
if ( ! isset( $value ) ||
(is_string($value) && $value == "") ||
(is_array($value) && count($value) == 0)
) {
continue;
}
$key = sanitizeKey( $key );
if ( is_array( $value ) ) {
$sanitized[ $key ] = sanitizeParams( $value );
} elseif ( $key == 'value' ) {
$sanitized[ $key ] = (float) $value; // do not encode value to avoid error messages on Pinterest
} elseif ( is_bool( $value ) ) {
$sanitized[ $key ] = (bool) $value;
} elseif (is_numeric($value)) {
$sanitized[ $key ] = $value;
} else {
$sanitized[ $key ] = stripslashes(html_entity_decode( $value ));
}
}
return $sanitized;
}
/**
* Checks if specified event enabled at least for one configured pixel
*
* @param string $eventName
*
* @return bool
*/
function isEventEnabled( $eventName ) {
foreach ( PYS()->getRegisteredPixels() as $pixel ) {
/** @var Pixel|Settings $pixel */
if ( $pixel->configured() && $pixel->getOption( $eventName ) ) {
return true;
}
}
return false;
}
function startsWith( $haystack, $needle ) {
// search backwards starting from haystack length characters from the end
return $needle === "" || strrpos( $haystack, $needle, - strlen( $haystack ) ) !== false;
}
function endsWith( $haystack, $needle ) {
// search forward starting from end minus needle length characters
return $needle === "" || ( ( $temp = strlen( $haystack ) - strlen( $needle ) ) >= 0 && strpos( $haystack, $needle,
$temp ) !== false );
}
function getCurrentPageUrl($removeQuery = false) {
if(!isset($_SERVER['HTTP_HOST']) || !isset($_SERVER['REQUEST_URI'])) {
return '';
}
if($removeQuery && isset($_SERVER['QUERY_STRING']) && isset($_SERVER['HTTP_HOST'])){
return $_SERVER['HTTP_HOST'] . str_replace("?".$_SERVER['QUERY_STRING'],"",$_SERVER['REQUEST_URI']);
}
return $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ;
}
function removeProtocolFromUrl( $url ) {
if ( extension_loaded( 'mbstring' ) ) {
$un = new URL\Normalizer();
$un->setUrl( $url );
$url = $un->normalize();
}
// remove fragment component
$url_parts = parse_url( $url );
if ( isset( $url_parts['fragment'] ) ) {
$url = preg_replace( '/#' . $url_parts['fragment'] . '$/', '', $url );
}
// remove scheme and www and current host if any
$url = str_replace( array( 'http://', 'https://', 'http://www.', 'https://www.', 'www.' ), '', $url );
$url = trim( $url );
$url = ltrim( $url, '/' );
//$url = rtrim( $url, '/' );
return $url;
}
/**
* Compare single URL or array of URLs with base URL. If base URL is not set, current page URL will be used.
*
* @param string|array $url
* @param string $base
* @param string $rule
*
* @return bool
*/
function compareURLs( $url, $base = '', $rule = 'match' ) {
// use current page url if not set
if ( empty( $base ) ) {
$base = getCurrentPageUrl();
}
$base = removeProtocolFromUrl( $base );
if ( is_string( $url ) ) {
if ( empty( $url ) || '*' === $url ) {
return true;
}
$url = rtrim( $url, '*' ); // for backward capability
$url = removeProtocolFromUrl( $url );
if ( $rule == 'match' ) {
return $base == $url;
}
if ( $rule == 'contains' ) {
if ( $base == $url ) {
return true;
}
if(empty($base) || empty($url)) {
return false;
}
if ( strpos( $base, $url ) !== false ) {
return true;
}
return false;
}
return false;
} else {
// recursively compare each url
foreach ( $url as $single_url ) {
if ( compareURLs( $single_url['value'], $base, $single_url['rule'] ) ) {
return true;
}
}
return false;
}
}
/**
* Currency symbols
*
* @return array
* */
function getPysCurrencySymbols() {
return array(
'AED' => 'د.إ',
'AFN' => '؋',
'ALL' => 'L',
'AMD' => 'AMD',
'ANG' => 'ƒ',
'AOA' => 'Kz',
'ARS' => '$',
'AUD' => '$',
'AWG' => 'Afl.',
'AZN' => 'AZN',
'BAM' => 'KM',
'BBD' => '$',
'BDT' => '৳ ',
'BGN' => 'лв.',
'BHD' => '.د.ب',
'BIF' => 'Fr',
'BMD' => '$',
'BND' => '$',
'BOB' => 'Bs.',
'BRL' => 'R$',
'BSD' => '$',
'BTC' => '฿',
'BTN' => 'Nu.',
'BWP' => 'P',
'BYR' => 'Br',
'BYN' => 'Br',
'BZD' => '$',
'CAD' => '$',
'CDF' => 'Fr',
'CHF' => 'CHF',
'CLP' => '$',
'CNY' => '¥',
'COP' => '$',
'CRC' => '₡',
'CUC' => '$',
'CUP' => '$',
'CVE' => '$',
'CZK' => 'Kč',
'DJF' => 'Fr',
'DKK' => 'DKK',
'DOP' => 'RD$',
'DZD' => 'د.ج',
'EGP' => 'EGP',
'ERN' => 'Nfk',
'ETB' => 'Br',
'EUR' => '€',
'FJD' => '$',
'FKP' => '£',
'GBP' => '£',
'GEL' => '₾',
'GGP' => '£',
'GHS' => '₵',
'GIP' => '£',
'GMD' => 'D',
'GNF' => 'Fr',
'GTQ' => 'Q',
'GYD' => '$',
'HKD' => '$',
'HNL' => 'L',
'HRK' => 'kn',
'HTG' => 'G',
'HUF' => 'Ft',
'IDR' => 'Rp',
'ILS' => '₪',
'IMP' => '£',
'INR' => '₹',
'IQD' => 'ع.د',
'IRR' => '﷼',
'IRT' => 'تومان',
'ISK' => 'kr.',
'JEP' => '£',
'JMD' => '$',
'JOD' => 'د.ا',
'JPY' => '¥',
'KES' => 'KSh',
'KGS' => 'сом',
'KHR' => '៛',
'KMF' => 'Fr',
'KPW' => '₩',
'KRW' => '₩',
'KWD' => 'د.ك',
'KYD' => '$',
'KZT' => 'KZT',
'LAK' => '₭',
'LBP' => 'ل.ل',
'LKR' => 'රු',
'LRD' => '$',
'LSL' => 'L',
'LYD' => 'ل.د',
'MAD' => 'د.م.',
'MDL' => 'MDL',
'MGA' => 'Ar',
'MKD' => 'ден',
'MMK' => 'Ks',
'MNT' => '₮',
'MOP' => 'P',
'MRU' => 'UM',
'MUR' => '₨',
'MVR' => '.ރ',
'MWK' => 'MK',
'MXN' => '$',
'MYR' => 'RM',
'MZN' => 'MT',
'NAD' => 'N$',
'NGN' => '₦',
'NIO' => 'C$',
'NOK' => 'kr',
'NPR' => '₨',
'NZD' => '$',
'OMR' => 'ر.ع.',
'PAB' => 'B/.',
'PEN' => 'S/',
'PGK' => 'K',
'PHP' => '₱',
'PKR' => '₨',
'PLN' => 'zł',
'PRB' => 'р.',
'PYG' => '₲',
'QAR' => 'ر.ق',
'RMB' => '¥',
'RON' => 'lei',
'RSD' => 'дин.',
'RUB' => '₽',
'RWF' => 'Fr',
'SAR' => 'ر.س',
'SBD' => '$',
'SCR' => '₨',
'SDG' => 'ج.س.',
'SEK' => 'kr',
'SGD' => '$',
'SHP' => '£',
'SLL' => 'Le',
'SOS' => 'Sh',
'SRD' => '$',
'SSP' => '£',
'STN' => 'Db',
'SYP' => 'ل.س',
'SZL' => 'L',
'THB' => '฿',
'TJS' => 'ЅМ',
'TMT' => 'm',
'TND' => 'د.ت',
'TOP' => 'T$',
'TRY' => '₺',
'TTD' => '$',
'TWD' => 'NT$',
'TZS' => 'Sh',
'UAH' => '₴',
'UGX' => 'UGX',
'USD' => '$',
'UYU' => '$',
'UZS' => 'UZS',
'VEF' => 'Bs F',
'VES' => 'Bs.S',
'VND' => '₫',
'VUV' => 'Vt',
'WST' => 'T',
'XAF' => 'CFA',
'XCD' => '$',
'XOF' => 'CFA',
'XPF' => 'Fr',
'YER' => '﷼',
'ZAR' => 'R',
'ZMW' => 'ZK',
);
}
function getStandardParams() {
global $post;
$cpt = get_post_type();
$params = array(
'page_title' => "",
'post_type' => $cpt,
'post_id' => "",
'plugin' => "PixelYourSite"
);
if(PYS()->getOption("enable_user_role_param")) {
$params['user_role'] = getUserRoles();
}
if(PYS()->getOption("enable_event_url_param")) {
$params['event_url'] = getCurrentPageUrl(true);
}
if(is_singular( 'post' )) {
$params['page_title'] = $post->post_title;
$params['post_id'] = $post->ID;
} elseif( is_singular( 'page' ) || is_home()) {
$params['post_type'] = 'page';
$params['post_id'] = is_home() ? null : $post->ID;
$params['page_title'] = is_home() == true ? get_bloginfo( 'name' ) : $post->post_title;
} elseif (isWooCommerceActive() && is_shop()) {
$page_id = (int) wc_get_page_id( 'shop' );
$params['post_type'] = 'page';
$params['post_id'] = $page_id;
$params['page_title'] = get_the_title( $page_id );
} elseif ( is_category() ) {
$cat = get_query_var( 'cat' );
$term = get_category( $cat );
$params['post_type'] = 'category';
$params['post_id'] = $cat;
$params['page_title'] = $term->name;
} elseif ( is_tag() ) {
$slug = get_query_var( 'tag' );
$term = get_term_by( 'slug', $slug, 'post_tag' );
$params['post_type'] = 'tag';
if($term) {
$params['post_id'] = $term->term_id;
$params['page_title'] = $term->name;
}
} elseif (is_tax()) {
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
$params['post_type'] = get_query_var( 'taxonomy' );
if ( $term ) {
$params['post_id'] = $term->term_id;
$params['page_title'] = $term->name;
}
}elseif(is_archive()){
$params['page_title'] = get_the_archive_title();
$params['post_type'] = 'archive';
} elseif ((isWooCommerceActive() && $cpt == 'product') ||
(isEddActive() && $cpt == 'download') ) {
$params['page_title'] = $post->post_title;
$params['post_id'] = $post->ID;
} else if ($post instanceof \WP_Post) {
$params['page_title'] = $post->post_title;
$params['post_id'] = $post->ID;
}
if(!PYS()->getOption("enable_post_type_param")) {
unset($params['post_type']);
}
if(!PYS()->getOption("enable_post_id_param")) {
unset($params['post_id']);
}
return $params;
}
function getWPMLProductId($product_id, $tag) {
$tagOption = "woo_wpml_unified_id";
$tagLanguageOption = "woo_wpml_language";
if (isWPMLActive() && $tag->getOption($tagOption)) {
$wpml_product_id = !empty($tag->getOption($tagLanguageOption))
? apply_filters('wpml_object_id', $product_id, 'product', false, $tag->getOption($tagLanguageOption))
: apply_filters('wpml_original_element_id', NULL, $product_id);
if ($wpml_product_id) {
return $wpml_product_id;
}
}
return $product_id;
}
function getTrafficSource () {
$referrer = "";
$source = "";
try {
if (isset($_SERVER['HTTP_REFERER'])) {
$referrer = $_SERVER['HTTP_REFERER'];
}
$direct = empty($referrer);
$internal = $direct ? false : (substr($referrer, 0, strlen(site_url())) === site_url());
$external = !$direct && !$internal;
$cookie = !isset($_COOKIE['pysTrafficSource']) ? null : $_COOKIE['pysTrafficSource'];
$session = !isset($_SESSION['TrafficSource']) ? null : $_SESSION['TrafficSource'];
if (!$external) {
$source = $cookie || $session ? $cookie ?? $session : 'direct';
} else {
$source = ($cookie && $cookie === $referrer) || ($session && $session === $referrer) ? $cookie ?? $session : $referrer;
}
if ($source !== 'direct') {
$parse = parse_url($source);
if(isset($parse['host'])) {
return $parse['host'];// leave only domain (Issue #70)
} elseif ($source == $cookie || $source == $session){
return $source;
} else {
return defined( 'REST_REQUEST' ) && REST_REQUEST ? 'REST API' : "direct";
}
} else {
return defined( 'REST_REQUEST' ) && REST_REQUEST ? 'REST API' : $source;
}
} catch (\Exception $e) {
return "direct";
}
}
function filterEmails($value) {
return validateEmail($value) ? "undefined" : $value;
}
function validateEmail($email){
return filter_var($email, FILTER_VALIDATE_EMAIL) !== false;
}
function getUtms ($seed_undefined = false) {
$utm = array();
$utmTerms = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content'];
foreach ($utmTerms as $utmTerm) {
if(isset($_GET[$utmTerm])) {
$utm[$utmTerm] = filterEmails($_GET[$utmTerm]);
} elseif (isset($_COOKIE["pys_".$utmTerm])) {
$utm[$utmTerm] =filterEmails( $_COOKIE["pys_".$utmTerm]);
} elseif(isset($_SESSION['TrafficUtms']) && isset($_SESSION['TrafficUtms'][$utmTerm])){
$utm[$utmTerm] =filterEmails( $_SESSION['TrafficUtms'][$utmTerm]);
} else {
if($seed_undefined){
$utm[$utmTerm] = "undefined";
}
}
}
return $utm;
}
function getUtmsId ($seed_undefined = false) {
$utm = array();
$utmTerms = ['fbadid', 'gadid', 'padid', 'bingid'];
foreach ($utmTerms as $utmTerm) {
if(isset($_GET[$utmTerm])) {
$utm[$utmTerm] = filterEmails($_GET[$utmTerm]);
} elseif (isset($_COOKIE["pys_".$utmTerm])) {
$utm[$utmTerm] =filterEmails( $_COOKIE["pys_".$utmTerm]);
} elseif(isset($_SESSION['TrafficUtmsId']) && isset($_SESSION['TrafficUtmsId'][$utmTerm])){
$utm[$utmTerm] =filterEmails( $_SESSION['TrafficUtmsId'][$utmTerm]);
} else {
if($seed_undefined){
$utm[$utmTerm] = "undefined";
}
}
}
return $utm;
}
function getBrowserTime(){
$dateTime = array();
$date = new \DateTime();
$days = array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday');
$months = array('January', 'February', 'March', 'April', 'May', 'June',
'July', 'August', 'September', 'October', 'November', 'December');
$hours = array('00-01', '01-02', '02-03', '03-04', '04-05', '05-06', '06-07', '07-08',
'08-09', '09-10', '10-11', '11-12', '12-13', '13-14', '14-15', '15-16', '16-17',
'17-18', '18-19', '19-20', '20-21', '21-22', '22-23', '23-24');
$dateTime[] = $hours[$date->format('G')];
$dateTime[] = $days[$date->format('w')];
$dateTime[] = $months[$date->format('n') - 1];
$dateTimeString = implode("|", $dateTime);
return $dateTimeString;
}
/**
* Get persistence user data
* @param $em
* @param $fn
* @param $ln
* @param $tel
* @return array
*/
function get_persistence_user_data( $em, $fn, $ln, $tel ) {
if ( !apply_filters( 'pys_disable_advanced_form_data_cookie', false ) && !apply_filters( 'pys_disable_advance_data_cookie', false ) ) {
if ( isset( $_COOKIE[ "pys_advanced_form_data" ] ) ) {
$userData = json_decode( stripslashes( $_COOKIE[ "pys_advanced_form_data" ] ), true );
$data_persistence = PYS()->getOption( 'data_persistency' );
if ( isset( $userData[ "email" ] ) && $userData[ "email" ] != "" && ( $data_persistence == 'keep_data' || empty( $em ) ) ) {
$em = $userData[ "email" ];
}
if ( isset( $userData[ "phone" ] ) && $userData[ "phone" ] != "" && ( $data_persistence == 'keep_data' || empty( $tel ) ) ) {
$tel = $userData[ "phone" ];
}
if ( isset( $userData[ "first_name" ] ) && $userData[ "first_name" ] != "" && ( $data_persistence == 'keep_data' || empty( $fn ) ) ) {
$fn = $userData[ "first_name" ];
}
if ( isset( $userData[ "last_name" ] ) && $userData[ "last_name" ] != "" && ( $data_persistence == 'keep_data' || empty( $ln ) ) ) {
$ln = $userData[ "last_name" ];
}
}
}
return array(
'em' => $em,
'fn' => $fn,
'ln' => $ln,
'tel' => $tel
);
}
function getAllMetaEventParamName(){
$metaEventParamName = array(
'event_url'=>'Event URL',
'landing_page'=>'Landing Page URL',
'post_id'=>'Post ID',
'post_title'=>'Post Title',
'post_type'=>'Post Type',
'page_title' => 'Page Title',
'content_name'=>'Content Name',
'content_type'=>'Content Type',
'categories'=>'Categories',
'category_name'=>'Category Name',
'tags'=>'Tags',
'user_role'=>'User Role',
'plugin'=>'Plugin',
);
return $metaEventParamName;
}