| 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_addons/components/widgets/socials/ |
| Current File : /home/eglisebaa/www/wp-content/plugins/trx_addons/components/widgets/socials/socials-sc.php |
<?php
/**
* Widget: Socials (Shortcodes)
*
* @package WordPress
* @subpackage ThemeREX Addons
* @since v1.0
*/
// Don't load directly
if ( ! defined( 'TRX_ADDONS_VERSION' ) ) {
die( '-1' );
}
// trx_widget_socials
//-------------------------------------------------------------
/*
[trx_widget_socials id="unique_id" title="Widget title"]
*/
if ( !function_exists( 'trx_addons_sc_widget_socials' ) ) {
function trx_addons_sc_widget_socials( $atts, $content = '' ){
$atts = trx_addons_sc_prepare_atts('trx_widget_socials', $atts, trx_addons_sc_common_atts('id', array(
// Individual params
"title" => "",
"description" => "",
"align" => "left",
"type" => "socials",
))
);
extract($atts);
$type = 'trx_addons_widget_socials';
$output = '';
global $wp_widget_factory;
if ( is_object( $wp_widget_factory ) && isset( $wp_widget_factory->widgets, $wp_widget_factory->widgets[ $type ] ) ) {
$output = '<div' . ($id ? ' id="'.esc_attr($id).'"' : '')
. ' class="widget_area sc_widget_socials'
. (trx_addons_exists_vc() ? ' vc_widget_socials wpb_content_element' : '')
. (!empty($class) ? ' ' . esc_attr($class) : '')
. '"'
. ($css ? ' style="'.esc_attr($css).'"' : '')
. '>';
ob_start();
the_widget( $type, $atts, trx_addons_prepare_widgets_args($id ? $id.'_widget' : 'widget_socials', 'widget_socials') );
$output .= ob_get_contents();
ob_end_clean();
$output .= '</div>';
}
return apply_filters('trx_addons_sc_output', $output, 'trx_widget_socials', $atts, $content);
}
}
// Add shortcode [trx_widget_socials]
if (!function_exists('trx_addons_sc_widget_socials_add_shortcode')) {
function trx_addons_sc_widget_socials_add_shortcode() {
add_shortcode("trx_widget_socials", "trx_addons_sc_widget_socials");
}
add_action('init', 'trx_addons_sc_widget_socials_add_shortcode', 20);
}