HEX
Server: LiteSpeed
System: Linux vps338 6.12.0-211.34.1.el10_2.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 15 07:56:02 EDT 2026 x86_64
User: ondernemer (1054)
PHP: 8.3.32
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/ondernemer/public_html/wp-content/themes/dt-the7/inc/class-the7-embed.php
<?php
/**
 * The7 embed class.
 *
 * @package The7
 */

defined( 'ABSPATH' ) || exit;

/**
 * Class The7_Embed
 */
class The7_Embed {

	/**
	 * @var string
	 */
	protected $src;

	/**
	 * @var int
	 */
	protected $width = 0;

	/**
	 * @var int
	 */
	protected $height = 0;

	/**
	 * The7_Embed constructor.
	 *
	 * @param string $src
	 */
	public function __construct( $src ) {
		$this->src = $src;
	}

	/**
	 * @param string $width
	 */
	public function set_width( $width ) {
		$this->width = (int) $width;
	}

	/**
	 * @param string $height
	 */
	public function set_height( $height ) {
		$this->height = (int) $height;
	}

	/**
	 * Return embed html or false if $wp_embed not set.
	 *
	 * @return bool|string
	 */
	public function get_html() {
		global $wp_embed;

		if ( empty( $wp_embed ) ) {
			return false;
		}

		$embed_atts = array();
		if ( $this->width ) {
			$embed_atts[] = sprintf( 'width="%s"', $this->width );
		}
		if ( $this->height ) {
			$embed_atts[] = sprintf( 'height="%s"', $this->height );
		}

		$embed_shortcode = sprintf( '[embed %1$s]%2$s[/embed]', join( ' ', $embed_atts ), $this->src );

		$this->add_hooks();
		$embed_html = do_shortcode( $wp_embed->run_shortcode( $embed_shortcode ) );
		$this->remove_hooks();

		return $embed_html;
	}

	/**
	 * Filter. Add width attribute to video shortcode.
	 *
	 * @param string $video
	 *
	 * @return string
	 */
	public function _fix_video_file_width_filter( $video ) {
		if ( ! preg_match( '/(width=\"?\d*\"?)/', $video ) ) {
			$video = preg_replace( '/(video)/', sprintf( '$1 width="%s"', $this->width ), $video );
		}

		return $video;
	}

	/**
	 * Add hooks.
	 */
	protected function add_hooks() {
		add_filter( 'wp_embed_handler_video', array( $this, '_fix_video_file_width_filter' ), 10 );
	}

	/**
	 * Remove hooks.
	 */
	protected function remove_hooks() {
		remove_filter( 'wp_embed_handler_video', array( $this, '_fix_video_file_width_filter' ), 10 );
	}
}