File: /var/www/Gosurya/wp/wp-content/themes/flatsome/inc/builder/core/server/src/Ajax/DoShortcode.php
<?php
namespace UxBuilder\Ajax;
class DoShortcode {
public function do_shortcode() {
$shortcode = wp_parse_args( $_POST['ux_builder_shortcode'], array(
'tag' => '', '$id' => '', 'options' => array()
) );
setup_postdata( get_the_ID() );
// Get current shortcode data.
$current_shortcode = ux_builder_shortcodes()->get( $shortcode['tag'] );
// Set <content/> as shortcode content to allow nested
// shortcodes if current shortcode is a container.
if( $current_shortcode['type'] == 'container' ) {
$shortcode['children'] = array( array(
'tag' => 'text',
'options' => array(),
'content' => '<content></content>',
) );
}
// Render and return the shortcode markup.
echo do_shortcode( ux_builder( 'to-string' )->transform( array( $shortcode ) ) );
die;
}
}