File: /home/creaqbdc/www/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 );
}
/**
* @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 ( is_bool( $value ) ) {
$sanitized[ $key ] = (bool) $value;
} elseif (is_numeric($value)) {
$sanitized[ $key ] = $value;
} else {
$sanitized[ $key ] = stripslashes(html_entity_decode( $value ));
}
}
return $sanitized;
}
function formatPriceTrimZeros($number, $decimals = 2) {
$formatted = number_format($number, $decimals, '.', '');
// Remove extra zeros on the right and a period if necessary
return rtrim(rtrim($formatted, '0'), '.');
}
/**
* 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;
}
function get_aw_feed_country_codes() {
$country = [
'AF' => 'Afghanistan',
'AL' => 'Albania',
'DZ' => 'Algeria',
'AS' => 'American Samoa',
'AD' => 'Andorra',
'AO' => 'Angola',
'AI' => 'Anguilla',
'AQ' => 'Antarctica',
'AG' => 'Antigua and Barbuda',
'AR' => 'Argentina',
'AM' => 'Armenia',
'AW' => 'Aruba',
'AU' => 'Australia',
'AT' => 'Austria',
'AZ' => 'Azerbaijan',
'BS' => 'Bahamas',
'BH' => 'Bahrain',
'BD' => 'Bangladesh',
'BB' => 'Barbados',
'BY' => 'Belarus',
'BE' => 'Belgium',
'BZ' => 'Belize',
'BJ' => 'Benin',
'BM' => 'Bermuda',
'BT' => 'Bhutan',
'BO' => 'Bolivia',
'BA' => 'Bosnia and Herzegovina',
'BW' => 'Botswana',
'BR' => 'Brazil',
'BN' => 'Brunei',
'BG' => 'Bulgaria',
'BF' => 'Burkina Faso',
'BI' => 'Burundi',
'KH' => 'Cambodia',
'CM' => 'Cameroon',
'CA' => 'Canada',
'CV' => 'Cape Verde',
'CF' => 'Central African Republic',
'TD' => 'Chad',
'CL' => 'Chile',
'CN' => 'China',
'CO' => 'Colombia',
'KM' => 'Comoros',
'CG' => 'Congo - Brazzaville',
'CD' => 'Congo - Kinshasa',
'CR' => 'Costa Rica',
'HR' => 'Croatia',
'CU' => 'Cuba',
'CY' => 'Cyprus',
'CZ' => 'Czech Republic',
'DK' => 'Denmark',
'DJ' => 'Djibouti',
'DM' => 'Dominica',
'DO' => 'Dominican Republic',
'EC' => 'Ecuador',
'EG' => 'Egypt',
'SV' => 'El Salvador',
'GQ' => 'Equatorial Guinea',
'ER' => 'Eritrea',
'EE' => 'Estonia',
'ET' => 'Ethiopia',
'FJ' => 'Fiji',
'FI' => 'Finland',
'FR' => 'France',
'GA' => 'Gabon',
'GM' => 'Gambia',
'GE' => 'Georgia',
'DE' => 'Germany',
'GH' => 'Ghana',
'GR' => 'Greece',
'GD' => 'Grenada',
'GT' => 'Guatemala',
'GN' => 'Guinea',
'GW' => 'Guinea-Bissau',
'GY' => 'Guyana',
'HT' => 'Haiti',
'HN' => 'Honduras',
'HU' => 'Hungary',
'IS' => 'Iceland',
'IN' => 'India',
'ID' => 'Indonesia',
'IR' => 'Iran',
'IQ' => 'Iraq',
'IE' => 'Ireland',
'IL' => 'Israel',
'IT' => 'Italy',
'JM' => 'Jamaica',
'JP' => 'Japan',
'JO' => 'Jordan',
'KZ' => 'Kazakhstan',
'KE' => 'Kenya',
'KI' => 'Kiribati',
'KW' => 'Kuwait',
'KG' => 'Kyrgyzstan',
'LA' => 'Laos',
'LV' => 'Latvia',
'LB' => 'Lebanon',
'LS' => 'Lesotho',
'LR' => 'Liberia',
'LY' => 'Libya',
'LI' => 'Liechtenstein',
'LT' => 'Lithuania',
'LU' => 'Luxembourg',
'MG' => 'Madagascar',
'MW' => 'Malawi',
'MY' => 'Malaysia',
'MV' => 'Maldives',
'ML' => 'Mali',
'MT' => 'Malta',
'MH' => 'Marshall Islands',
'MR' => 'Mauritania',
'MU' => 'Mauritius',
'MX' => 'Mexico',
'FM' => 'Micronesia',
'MD' => 'Moldova',
'MC' => 'Monaco',
'MN' => 'Mongolia',
'ME' => 'Montenegro',
'MA' => 'Morocco',
'MZ' => 'Mozambique',
'MM' => 'Myanmar (Burma)',
'NA' => 'Namibia',
'NR' => 'Nauru',
'NP' => 'Nepal',
'NL' => 'Netherlands',
'NZ' => 'New Zealand',
'NI' => 'Nicaragua',
'NE' => 'Niger',
'NG' => 'Nigeria',
'KP' => 'North Korea',
'MK' => 'North Macedonia',
'NO' => 'Norway',
'OM' => 'Oman',
'PK' => 'Pakistan',
'PW' => 'Palau',
'PA' => 'Panama',
'PG' => 'Papua New Guinea',
'PY' => 'Paraguay',
'PE' => 'Peru',
'PH' => 'Philippines',
'PL' => 'Poland',
'PT' => 'Portugal',
'QA' => 'Qatar',
'RO' => 'Romania',
'RU' => 'Russia',
'RW' => 'Rwanda',
'KN' => 'Saint Kitts and Nevis',
'LC' => 'Saint Lucia',
'VC' => 'Saint Vincent and the Grenadines',
'WS' => 'Samoa',
'SM' => 'San Marino',
'ST' => 'Sao Tome and Principe',
'SA' => 'Saudi Arabia',
'SN' => 'Senegal',
'RS' => 'Serbia',
'SC' => 'Seychelles',
'SL' => 'Sierra Leone',
'SG' => 'Singapore',
'SK' => 'Slovakia',
'SI' => 'Slovenia',
'SB' => 'Solomon Islands',
'SO' => 'Somalia',
'ZA' => 'South Africa',
'KR' => 'South Korea',
'SS' => 'South Sudan',
'ES' => 'Spain',
'LK' => 'Sri Lanka',
'SD' => 'Sudan',
'SR' => 'Suriname',
'SE' => 'Sweden',
'CH' => 'Switzerland',
'SY' => 'Syria',
'TW' => 'Taiwan',
'TJ' => 'Tajikistan',
'TZ' => 'Tanzania',
'TH' => 'Thailand',
'TL' => 'Timor-Leste',
'TG' => 'Togo',
'TO' => 'Tonga',
'TT' => 'Trinidad and Tobago',
'TN' => 'Tunisia',
'TR' => 'Turkey',
'TM' => 'Turkmenistan',
'TV' => 'Tuvalu',
'UG' => 'Uganda',
'UA' => 'Ukraine',
'AE' => 'United Arab Emirates',
'GB' => 'United Kingdom',
'US' => 'United States',
'UY' => 'Uruguay',
'UZ' => 'Uzbekistan',
'VU' => 'Vanuatu',
'VA' => 'Vatican City',
'VE' => 'Venezuela',
'VN' => 'Vietnam',
'YE' => 'Yemen',
'ZM' => 'Zambia',
'ZW' => 'Zimbabwe'
];
$result = array_map(
function($name, $code) {
return $name . " ($code)";
},
$country,
array_keys($country)
);
return array_combine(array_keys($country), $result);
}
function get_aw_feed_language_codes() {
$language = [
'AB' => 'Abkhaz',
'AA' => 'Afar',
'AF' => 'Afrikaans',
'AK' => 'Akan',
'SQ' => 'Albanian',
'AM' => 'Amharic',
'AR' => 'Arabic',
'AN' => 'Aragonese',
'HY' => 'Armenian',
'AS' => 'Assamese',
'AV' => 'Avaric',
'AE' => 'Avestan',
'AY' => 'Aymara',
'AZ' => 'Azerbaijani',
'BM' => 'Bambara',
'BA' => 'Bashkir',
'EU' => 'Basque',
'BE' => 'Belarusian',
'BN' => 'Bengali',
'BH' => 'Bihari',
'BI' => 'Bislama',
'BS' => 'Bosnian',
'BR' => 'Breton',
'BG' => 'Bulgarian',
'MY' => 'Burmese',
'CA' => 'Catalan',
'CH' => 'Chamorro',
'CE' => 'Chechen',
'NY' => 'Chichewa',
'ZH' => 'Chinese',
'CV' => 'Chuvash',
'KW' => 'Cornish',
'CO' => 'Corsican',
'CR' => 'Cree',
'HR' => 'Croatian',
'CS' => 'Czech',
'DA' => 'Danish',
'DV' => 'Divehi',
'NL' => 'Dutch',
'DZ' => 'Dzongkha',
'EN' => 'English',
'EO' => 'Esperanto',
'ET' => 'Estonian',
'EE' => 'Ewe',
'FO' => 'Faroese',
'FJ' => 'Fijian',
'FI' => 'Finnish',
'FR' => 'French',
'FF' => 'Fula',
'GL' => 'Galician',
'KA' => 'Georgian',
'DE' => 'German',
'EL' => 'Greek',
'GN' => 'Guarani',
'GU' => 'Gujarati',
'HT' => 'Haitian',
'HA' => 'Hausa',
'HE' => 'Hebrew',
'HZ' => 'Herero',
'HI' => 'Hindi',
'HO' => 'Hiri Motu',
'HU' => 'Hungarian',
'IA' => 'Interlingua',
'ID' => 'Indonesian',
'IE' => 'Interlingue',
'GA' => 'Irish',
'IG' => 'Igbo',
'IK' => 'Inupiaq',
'IO' => 'Ido',
'IS' => 'Icelandic',
'IT' => 'Italian',
'IU' => 'Inuktitut',
'JA' => 'Japanese',
'JV' => 'Javanese',
'KL' => 'Kalaallisut',
'KN' => 'Kannada',
'KR' => 'Kanuri',
'KS' => 'Kashmiri',
'KK' => 'Kazakh',
'KM' => 'Khmer',
'KI' => 'Kikuyu',
'RW' => 'Kinyarwanda',
'KY' => 'Kyrgyz',
'KV' => 'Komi',
'KG' => 'Kongo',
'KO' => 'Korean',
'KU' => 'Kurdish',
'KJ' => 'Kwanyama',
'LA' => 'Latin',
'LB' => 'Luxembourgish',
'LG' => 'Luganda',
'LI' => 'Limburgish',
'LN' => 'Lingala',
'LO' => 'Lao',
'LT' => 'Lithuanian',
'LU' => 'Luba-Katanga',
'LV' => 'Latvian',
'GV' => 'Manx',
'MK' => 'Macedonian',
'MG' => 'Malagasy',
'MS' => 'Malay',
'ML' => 'Malayalam',
'MT' => 'Maltese',
'MI' => 'Maori',
'MR' => 'Marathi',
'MH' => 'Marshallese',
'MN' => 'Mongolian',
'NA' => 'Nauru',
'NV' => 'Navajo',
'ND' => 'North Ndebele',
'NE' => 'Nepali',
'NG' => 'Ndonga',
'NB' => 'Norwegian Bokmål',
'NN' => 'Norwegian Nynorsk',
'NO' => 'Norwegian',
'II' => 'Nuosu',
'NR' => 'South Ndebele',
'OC' => 'Occitan',
'OJ' => 'Ojibwe',
'CU' => 'Old Church Slavonic',
'OM' => 'Oromo',
'OR' => 'Oriya',
'OS' => 'Ossetian',
'PA' => 'Punjabi',
'PI' => 'Pali',
'FA' => 'Persian',
'PL' => 'Polish',
'PS' => 'Pashto',
'PT' => 'Portuguese',
'QU' => 'Quechua',
'RM' => 'Romansh',
'RN' => 'Kirundi',
'RO' => 'Romanian',
'RU' => 'Russian',
'SA' => 'Sanskrit',
'SC' => 'Sardinian',
'SD' => 'Sindhi',
'SE' => 'Northern Sami',
'SM' => 'Samoan',
'SG' => 'Sango',
'SR' => 'Serbian',
'GD' => 'Scottish Gaelic',
'SN' => 'Shona',
'SI' => 'Sinhala',
'SK' => 'Slovak',
'SL' => 'Slovenian',
'SO' => 'Somali',
'ST' => 'Southern Sotho',
'ES' => 'Spanish',
'SU' => 'Sundanese',
'SW' => 'Swahili',
'SS' => 'Swati',
'SV' => 'Swedish',
'TA' => 'Tamil',
'TE' => 'Telugu',
'TG' => 'Tajik',
'TH' => 'Thai',
'TI' => 'Tigrinya',
'BO' => 'Tibetan',
'TK' => 'Turkmen',
'TL' => 'Tagalog',
'TN' => 'Tswana',
'TO' => 'Tongan',
'TR' => 'Turkish',
'TS' => 'Tsonga',
'TT' => 'Tatar',
'TW' => 'Twi',
'TY' => 'Tahitian',
'UG' => 'Uyghur',
'UK' => 'Ukrainian',
'UR' => 'Urdu',
'UZ' => 'Uzbek',
'VE' => 'Venda',
'VI' => 'Vietnamese',
'VO' => 'Volapük',
'WA' => 'Walloon',
'CY' => 'Welsh',
'WO' => 'Wolof',
'XH' => 'Xhosa',
'YI' => 'Yiddish',
'YO' => 'Yoruba',
'ZA' => 'Zhuang',
'ZU' => 'Zulu'
];
$result = array_map(
function($name, $code) {
return $name . " ($code)";
},
$language,
array_keys($language)
);
return array_combine(array_keys($language), $result);
}
function pys_get_option( $option, $default = false ) {
global $wpdb;
$table = $wpdb->prefix . 'pys_options';
// We are trying to get from our table
$value = $wpdb->get_var( $wpdb->prepare(
"SELECT option_value FROM {$table} WHERE option_name = %s LIMIT 1",
$option
) );
if ( $value !== null ) {
return maybe_unserialize( $value );
}
// If it is not in your table, try wp_options
$value = get_option( $option, $default );
return $value;
}
function pys_update_option( $option, $value ) {
global $wpdb;
$table = $wpdb->prefix . 'pys_options';
$data = [
'option_name' => $option,
'option_value' => maybe_serialize( $value ),
];
$formats = [ '%s', '%s' ];
// Update or insert
$existing = $wpdb->get_var( $wpdb->prepare(
"SELECT COUNT(*) FROM {$table} WHERE option_name = %s",
$option
) );
if ( $existing ) {
$wpdb->update( $table, $data, [ 'option_name' => $option ], $formats, [ '%s' ] );
} else {
$wpdb->insert( $table, $data, $formats );
}
return true;
}