HEX
Server: Apache/2.4.68 (Debian)
System: Linux as-cs-widget-demo-us-central1 6.1.0-44-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
User: root (0)
PHP: 8.2.32
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/wp-recipe-maker/includes/public/class-wprm-template-shortcode.php
<?php
/**
 * Parent class for the template shortcodes.
 *
 * @link       https://bootstrapped.ventures
 * @since      4.0.0
 *
 * @package    WP_Recipe_Maker
 * @subpackage WP_Recipe_Maker/includes/public
 */

/**
 * Parent class for the template shortcodes.
 *
 * @since      4.0.0
 * @package    WP_Recipe_Maker
 * @subpackage WP_Recipe_Maker/includes/public
 * @author     Brecht Vandersmissen <brecht@bootstrapped.ventures>
 */
class WPRM_Template_Shortcode {
	public static $attributes = array();
	public static $shortcode = '';

	public static function init() {
		$shortcode = static::$shortcode;

		if ( $shortcode ) {
			// Register shortcode in WordPress.
			add_shortcode( $shortcode, array( get_called_class(), 'shortcode' ) );

			// Add to list of all shortcodes if not deprecated.
			WPRM_Template_Shortcodes::$shortcodes[ $shortcode ] = static::$attributes;
		}
	}
	
	public static function init_deprecated() {
		$shortcode = static::$shortcode;

		if ( $shortcode ) {
			// Only register in WordPress.
			add_shortcode( $shortcode, array( get_called_class(), 'shortcode' ) );
		}
	}

	public static function clean_paragraphs( $text ) {

		// Remove blank lines.
		$text = str_ireplace( '<p></p>', '', $text );
		$text = str_ireplace( '<p><br></p>', '', $text );
		$text = str_ireplace( '<p><br/></p>', '', $text );

		// Replace <p> by <span> while keeping any attributes (text-align!).
		$text = preg_replace_callback(
			'/<p(\s[^>]*>|>)/mi',
			function( $match ) {
				$atts = $match[1];

				// Use block style.
				if ( false !== stripos( $atts, ' style="' ) ) {
					$atts = str_ireplace( ' style="', ' style="display: block;', $atts );
				} else {
					$atts = str_ireplace( '>', ' style="display: block;">', $atts );
				}

				return '<span' . $atts;
			},
			$text
		);

		// Replace </p> with closing span and spacer.
		$text = str_ireplace( '</p>', '</span>[wprm-spacer]', $text );

		// Trim.
		$text = trim( $text );

		// If spacer is at the very end of the text, remove it.
		if ( substr( $text, -13 ) === '[wprm-spacer]' ) {
			$text = substr( $text, 0, -13 );
		}

		return trim( do_shortcode( $text ) );
	}

	public static function get_hook() {
		// Load assets when a recipe shortcode is used.
		WPRM_Assets::load();
		
		return str_replace( '-', '_', static::$shortcode ) . '_shortcode';
	}

	protected static function get_attributes( $atts ) {
		// Attributes available for this shortcode.
		$defaults = WPRM_Template_Shortcodes::get_defaults( static::$shortcode );

		// Attributes available for all shortcodes.
		$defaults['class'] = '';

		// Allow filtering of attributes.
		$atts = shortcode_atts( $defaults, $atts, str_replace( '-', '_', static::$shortcode ) );

		// Technical attributes that cannot be overwritten.
		$atts['is_template_editor_preview'] = isset( $GLOBALS['wp']->query_vars['rest_route'] ) && '/wp-recipe-maker/v1/template/preview' === $GLOBALS['wp']->query_vars['rest_route'];

		return $atts;
	}

	protected static function get_defaults() {
		return WPRM_Template_Shortcodes::get_defaults( static::$shortcode );
	}

	protected static function get_inline_css_variables( $prefix, $atts, $keys ) {
		return WPRM_Shortcode_Helper::get_inline_css_variables( $prefix, $atts, static::get_defaults(), $keys );
	}

	protected static function test_inline_css_variables( $prefix, $atts, $keys ) {
		return WPRM_Shortcode_Helper::test_inline_css_variables( $prefix, static::get_defaults(), $keys );
	}
}