![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/gg.corals.io/wp-content/plugins/trx_addons/components/shortcodes/anchor/ |
<?php /** * Shortcode: Anchor * * @package WordPress * @subpackage ThemeREX Addons * @since v1.2 */ // Disable direct call if ( ! defined( 'ABSPATH' ) ) { exit; } // Load required styles and scripts for the frontend if ( !function_exists( 'trx_addons_sc_anchor_load_scripts_front' ) ) { add_action("wp_enqueue_scripts", 'trx_addons_sc_anchor_load_scripts_front'); function trx_addons_sc_anchor_load_scripts_front() { if (trx_addons_is_on(trx_addons_get_option('debug_mode'))) wp_enqueue_style( 'trx_addons-sc_anchor', trx_addons_get_file_url(TRX_ADDONS_PLUGIN_SHORTCODES . 'anchor/anchor.css'), array(), null ); wp_enqueue_script( 'trx_addons-sc_anchor', trx_addons_get_file_url(TRX_ADDONS_PLUGIN_SHORTCODES . 'anchor/anchor.js'), array('jquery'), null, true ); } } // Merge shortcode's specific styles into single stylesheet if ( !function_exists( 'trx_addons_sc_anchor_merge_styles' ) ) { add_filter("trx_addons_filter_merge_styles", 'trx_addons_sc_anchor_merge_styles'); function trx_addons_sc_anchor_merge_styles($list) { $list[] = TRX_ADDONS_PLUGIN_SHORTCODES . 'anchor/anchor.css'; return $list; } } // Merge shortcode's specific scripts into single file if ( !function_exists( 'trx_addons_sc_anchor_merge_scripts' ) ) { add_action("trx_addons_filter_merge_scripts", 'trx_addons_sc_anchor_merge_scripts'); function trx_addons_sc_anchor_merge_scripts($list) { $list[] = TRX_ADDONS_PLUGIN_SHORTCODES . 'anchor/anchor.js'; return $list; } } // Add shortcode's specific vars to the JS storage if ( !function_exists( 'trx_addons_sc_anchor_localize_script' ) ) { add_filter("trx_addons_filter_localize_script", 'trx_addons_sc_anchor_localize_script'); function trx_addons_sc_anchor_localize_script($vars) { $is_preview = function_exists('trx_addons_elm_is_preview') && trx_addons_elm_is_preview(); return array_merge($vars, array( 'scroll_to_anchor' => $is_preview ? 0 : trx_addons_get_option('scroll_to_anchor'), 'update_location_from_anchor' => $is_preview ? 0 : trx_addons_get_option('update_location_from_anchor') )); } } // trx_sc_anchor //------------------------------------------------------------- /* [trx_sc_anchor id="unique_id" style="default"] */ if ( !function_exists( 'trx_addons_sc_anchor' ) ) { function trx_addons_sc_anchor($atts, $content='') { $atts = trx_addons_sc_prepare_atts('trx_sc_anchor', $atts, trx_addons_sc_common_atts('icon', array( // Individual params "type" => "default", "title" => "", "url" => "", // Common params "id" => "", "anchor_id" => "" // Alter name for id in Elementor ('id' is reserved by Elementor) )) ); if (!empty($atts['anchor_id'])) $atts['id'] = $atts['anchor_id']; if (empty($atts['icon'])) { $atts['icon'] = isset( $atts['icon_' . $atts['icon_type']] ) && $atts['icon_' . $atts['icon_type']] != 'empty' ? $atts['icon_' . $atts['icon_type']] : ''; trx_addons_load_icons($atts['icon_type']); } else if (strtolower($atts['icon']) == 'none') $atts['icon'] = ''; ob_start(); trx_addons_get_template_part(array( TRX_ADDONS_PLUGIN_SHORTCODES . 'anchor/tpl.'.trx_addons_esc($atts['type']).'.php', TRX_ADDONS_PLUGIN_SHORTCODES . 'anchor/tpl.default.php' ), 'trx_addons_args_sc_anchor', $atts ); $output = ob_get_contents(); ob_end_clean(); return apply_filters('trx_addons_sc_output', $output, 'trx_sc_anchor', $atts, $content); } } // Add shortcode [trx_sc_anchor] if (!function_exists('trx_addons_sc_anchor_add_shortcode')) { function trx_addons_sc_anchor_add_shortcode() { add_shortcode("trx_sc_anchor", "trx_addons_sc_anchor"); } add_action('init', 'trx_addons_sc_anchor_add_shortcode', 20); } // Add shortcodes //---------------------------------------------------------------------------- // Add shortcodes to Elementor if ( trx_addons_exists_elementor() ) { require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_SHORTCODES . 'anchor/anchor-sc-elementor.php'; } // Add shortcodes to Gutenberg if ( trx_addons_exists_gutenberg() ) { require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_SHORTCODES . 'anchor/anchor-sc-gutenberg.php'; } // Add shortcodes to VC if ( trx_addons_exists_vc() ) { require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_SHORTCODES . 'anchor/anchor-sc-vc.php'; }