403Webshell
Server IP : 213.186.33.4  /  Your IP : 216.73.216.146
Web Server : Apache
System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
User : karinebmkh ( 644538)
PHP Version : 8.4.22
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/karinebmkh/www2/wp-content/plugins/so-widgets-bundle/base/inc/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/karinebmkh/www2/wp-content/plugins/so-widgets-bundle/base/inc//shortcode.php
<?php

/**
 * A simple shortcode that just renders a
 *
 * @param $attr
 * @param string $content
 *
 * @return string
 */
function siteorigin_widget_shortcode( $attr, $content = '' ){
	$attr = shortcode_atts( array(
		'class' => false,
		'id' => '',
	), $attr, 'panels_widget' );

	$attr[ 'class' ] = html_entity_decode( $attr[ 'class' ] );

	global $wp_widget_factory;
	if( ! empty( $attr[ 'class' ] ) && isset( $wp_widget_factory->widgets[ $attr[ 'class' ] ] ) ) {
		$the_widget = $wp_widget_factory->widgets[ $attr[ 'class' ] ];

		// Parse the value of the shortcode
		preg_match( '/value="(.*?)"/', trim( $content ), $matches );
		if( ! empty( $matches[1] ) ) {
			$data = json_decode( html_entity_decode( $matches[1] ), true );
		}

		$widget_args = ! empty( $data[ 'args' ] ) ? $data[ 'args' ] : array();
		$widget_instance = ! empty( $data[ 'instance' ] ) ? $data[ 'instance' ] : array();

		$widget_args = wp_parse_args( array(
			'before_widget' => '',
			'after_widget' => '',
			'before_title' => '<h3 class="widget-title">',
			'after_title' => '</h3>',
		), $widget_args );

		ob_start();
		$the_widget->widget( $widget_args, $widget_instance );
		return ob_get_clean();
	}
}

function siteorigin_widget_shortcode_register(){
	global $shortcode_tags;

	// Only load this as a fallback if Page Builder hasn't already registered it.
	if( empty( $shortcode_tags[ 'siteorigin_widget' ] ) ) {
		add_shortcode( 'siteorigin_widget', 'siteorigin_widget_shortcode' );
	}
}
add_action( 'plugins_loaded', 'siteorigin_widget_shortcode_register', 15 );

/**
 * Tell Page Builder we'll be using the custom siteorigin_widget shortcode
 *
 * @param $shortcode
 * @param $widget
 *
 * @return string
 */
function siteorigin_widget_shortcode_panels_cache_shortcode( $shortcode, $widget ){
	if( is_a( $widget, 'SiteOrigin_Widget' ) ) {
		$shortcode = 'siteorigin_widget';
	}

	return $shortcode;
}

add_filter( 'siteorigin_panels_cache_shortcode', 'siteorigin_widget_shortcode_panels_cache_shortcode', 10, 2 );

Youez - 2016 - github.com/yon3zu
LinuXploit