| Linux webm007.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 Path : /home/eglisebaa/www/wp-content/plugins/trx_addons2/components/shortcodes/price/ |
| Current File : /home/eglisebaa/www/wp-content/plugins/trx_addons2/components/shortcodes/price/price.php |
<?php
/**
* Shortcode: Price block
*
* @package WordPress
* @subpackage ThemeREX Addons
* @since v1.2
*/
// Don't load directly
if ( ! defined( 'TRX_ADDONS_VERSION' ) ) {
die( '-1' );
}
// Load required styles and scripts for the frontend
if ( !function_exists( 'trx_addons_sc_price_load_scripts_front' ) ) {
add_action("wp_enqueue_scripts", 'trx_addons_sc_price_load_scripts_front');
function trx_addons_sc_price_load_scripts_front() {
if (trx_addons_is_on(trx_addons_get_option('debug_mode'))){
wp_enqueue_style( 'trx_addons-sc_price', trx_addons_get_file_url(TRX_ADDONS_PLUGIN_SHORTCODES . 'price/price.css'), array(), null );
}
}
}
// Load responsive styles for the frontend
if ( !function_exists( 'trx_addons_sc_price_load_responsive_styles' ) ) {
add_action("wp_enqueue_scripts", 'trx_addons_sc_price_load_responsive_styles', 2000);
function trx_addons_sc_price_load_responsive_styles() {
if (trx_addons_is_on(trx_addons_get_option('debug_mode'))) {
wp_enqueue_style( 'trx_addons-sc_price-responsive', trx_addons_get_file_url(TRX_ADDONS_PLUGIN_SHORTCODES . 'price/price.responsive.css'), array(), null );
}
}
}
// Merge shortcode's specific styles into single stylesheet
if ( !function_exists( 'trx_addons_sc_price_merge_styles' ) ) {
add_filter("trx_addons_filter_merge_styles", 'trx_addons_sc_price_merge_styles');
function trx_addons_sc_price_merge_styles($list) {
$list[] = TRX_ADDONS_PLUGIN_SHORTCODES . 'price/price.css';
return $list;
}
}
// Merge shortcode's specific styles to the single stylesheet (responsive)
if ( !function_exists( 'trx_addons_sc_price_merge_styles_responsive' ) ) {
add_filter("trx_addons_filter_merge_styles_responsive", 'trx_addons_sc_price_merge_styles_responsive');
function trx_addons_sc_price_merge_styles_responsive($list) {
$list[] = TRX_ADDONS_PLUGIN_SHORTCODES . 'price/price.responsive.css';
return $list;
}
}
// trx_sc_price
//-------------------------------------------------------------
/*
[trx_sc_price id="unique_id" title="Our plan" link="#" link_text="Buy now"]Description[/trx_sc_price]
*/
if ( !function_exists( 'trx_addons_sc_price' ) ) {
function trx_addons_sc_price($atts, $content=null){
$atts = trx_addons_sc_prepare_atts('trx_sc_price', $atts, trx_addons_sc_common_atts('id,title,slider', array(
// Individual params
"type" => 'default',
"columns" => "",
"prices" => "",
))
);
if (function_exists('vc_param_group_parse_atts') && !is_array($atts['prices'])) {
$atts['prices'] = (array) vc_param_group_parse_atts( $atts['prices'] );
}
$output = '';
if (is_array($atts['prices']) && count($atts['prices']) > 0) {
if (empty($atts['columns'])) $atts['columns'] = count($atts['prices']);
$atts['columns'] = max(1, min(count($atts['prices']), $atts['columns']));
if (!empty($atts['columns_tablet'])) $atts['columns_tablet'] = max(1, min(count($atts['prices']), (int) $atts['columns_tablet']));
if (!empty($atts['columns_mobile'])) $atts['columns_mobile'] = max(1, min(count($atts['prices']), (int) $atts['columns_mobile']));
$atts['slider'] = $atts['slider'] > 0 && count($atts['prices']) > $atts['columns'];
$atts['slides_space'] = max(0, (int) $atts['slides_space']);
if ($atts['slider'] > 0 && (int) $atts['slider_pagination'] > 0) $atts['slider_pagination'] = 'bottom';
foreach ($atts['prices'] as $k=>$v) {
if (!empty($v['description']))
$atts['prices'][$k]['description'] = preg_replace( '/\\[(.*)\\]/', '<b>$1</b>', function_exists('vc_value_from_safe') ? vc_value_from_safe( $v['description'] ) : $v['description'] );
}
ob_start();
trx_addons_get_template_part(array(
TRX_ADDONS_PLUGIN_SHORTCODES . 'price/tpl.'.trx_addons_esc($atts['type']).'.php',
TRX_ADDONS_PLUGIN_SHORTCODES . 'price/tpl.default.php'
),
'trx_addons_args_sc_price',
$atts
);
$output = ob_get_contents();
ob_end_clean();
}
return apply_filters('trx_addons_sc_output', $output, 'trx_sc_price', $atts, $content);
}
}
// Add shortcode [trx_sc_price]
if (!function_exists('trx_addons_sc_price_add_shortcode')) {
function trx_addons_sc_price_add_shortcode() {
add_shortcode("trx_sc_price", "trx_addons_sc_price");
}
add_action('init', 'trx_addons_sc_price_add_shortcode', 20);
}
// Add shortcodes
//----------------------------------------------------------------------------
// Add shortcodes to Elementor
if ( trx_addons_exists_elementor() && function_exists('trx_addons_elm_init') ) {
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_SHORTCODES . 'price/price-sc-elementor.php';
}
// Add shortcodes to Gutenberg
if ( trx_addons_exists_gutenberg() && function_exists( 'trx_addons_gutenberg_get_param_id' ) ) {
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_SHORTCODES . 'price/price-sc-gutenberg.php';
}
// Add shortcodes to VC
if ( trx_addons_exists_vc() && function_exists( 'trx_addons_vc_add_id_param' ) ) {
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_SHORTCODES . 'price/price-sc-vc.php';
}