![]() 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/widgets/socials/ |
<?php /** * Template to represent shortcode as a widget in the Elementor preview area * * Written as a Backbone JavaScript template and using to generate the live preview in the Elementor's Editor * * @package WordPress * @subpackage ThemeREX Addons * @since v1.6.41 */ extract(get_query_var('trx_addons_args_widget_socials')); extract(trx_addons_prepare_widgets_args('widget_socials_'.mt_rand(), 'widget_socials')); // Before widget (defined by themes) trx_addons_show_layout($before_widget); // Widget title if one was input (before and after defined by themes) ?><# if (settings.title != '') { #><?php trx_addons_show_layout($before_title); ?><# print(settings.title); #><?php trx_addons_show_layout($after_title); ?><# } // Widget body if (settings.description != '') { #><div class="socials_description">{{{ settings.description }}}</div><# } var socials = settings.type == 'socials' ? '<?php echo addslashes(trx_addons_get_socials_links()); ?>' : '<?php echo addslashes(trx_addons_get_share_links(array( 'type' => 'block', 'caption' => '', 'echo' => false ))); ?>'; if ( socials != '') { #><div class="{{ settings.type }}_wrap sc_align_{{ settings.align }}">{{{ socials }}}</div><# } #><?php // After widget (defined by themes) trx_addons_show_layout($after_widget);