Heray-Was-Here
Server : LiteSpeed
System : Linux server310.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
User : myveqfxv ( 6863)
PHP Version : 7.4.33
Disable Function : NONE
Directory :  /home/myveqfxv/www/wp-content/plugins/gutenverse/includes/block/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //home/myveqfxv/www/wp-content/plugins/gutenverse/includes/block/class-video.php
<?php
/**
 * Video Block class
 *
 * @author Jegstudio
 * @since 1.0.0
 * @package gutenverse\block
 */

namespace Gutenverse\Block;

use Gutenverse\Framework\Block\Block_Abstract;

/**
 * Class Video Block
 *
 * @package gutenverse\block
 */
class Video extends Block_Abstract {

	/**
	 * Render content
	 *
	 * @return string
	 */
	public function render_content() {
		$video_type     = isset( $this->attributes['videoType'] ) ? $this->attributes['videoType'] : 'upload';
		$video_src      = isset( $this->attributes['videoSrc'] ) ? $this->attributes['videoSrc'] : '';
		$hide_controls  = isset( $this->attributes['hideControls'] ) && $this->attributes['hideControls'];
		$playing        = isset( $this->attributes['playing'] ) && $this->attributes['playing'];
		$muted          = isset( $this->attributes['muted'] ) && $this->attributes['muted'];
		$loop           = isset( $this->attributes['loop'] ) && $this->attributes['loop'];
		$width          = isset( $this->attributes['width'] ) ? $this->attributes['width'] : array();
		$height         = isset( $this->attributes['height'] ) ? $this->attributes['height'] : array();
		$start          = isset( $this->attributes['start'] ) ? $this->attributes['start'] : 0;
		$end            = isset( $this->attributes['end'] ) ? $this->attributes['end'] : 0;
		$caption_type   = isset( $this->attributes['captionType'] ) ? $this->attributes['captionType'] : 'none';
		$caption_orig   = isset( $this->attributes['captionOriginal'] ) ? $this->attributes['captionOriginal'] : '';
		$caption_custom = isset( $this->attributes['captionCustom'] ) ? $this->attributes['captionCustom'] : '';

		if ( empty( $video_src ) ) {
			return '';
		}

		$output = '';

		// Video rendering.
		if ( 'externalLink' === $video_type ) {
			$data_properties = array(
				'url'         => $video_src,
				'class'       => 'guten-video-background',
				'width'       => isset( $width['Desktop'] ) ? $width['Desktop'] . '%' : '100%',
				'height'      => isset( $height['Desktop'] ) ? $height['Desktop'] . 'px' : '500px',
				'playing'     => $playing,
				'muted'       => $muted,
				'loop'        => $loop,
				'controls'    => ! $hide_controls,
				'playsinline' => true,
				'style'       => (object) array(),
				'config'      => array(
					'youtube' => array(
						'playerVars' => array(
							'start' => $start,
							'end'   => $end,
						),
					),
				),
			);
			$output         .= '<div class="guten-video-wrapper" data-property="' . esc_attr( wp_json_encode( $data_properties ) ) . '"></div>';
		} else {
			$attrs   = ' src="' . esc_url( $video_src ) . '"';
			$attrs  .= ! $hide_controls ? ' controls' : '';
			$attrs  .= $playing ? ' autoplay' : '';
			$attrs  .= $muted ? ' muted' : '';
			$attrs  .= $loop ? ' loop' : '';
			$output .= '<video' . $attrs . '></video>';
		}

		// Caption.
		if ( 'original' === $caption_type ) {
			$output .= '<span class="guten-caption">' . wp_kses_post( $caption_orig ) . '</span>';
		} elseif ( 'custom' === $caption_type ) {
			$output .= '<span class="guten-caption">' . wp_kses_post( $caption_custom ) . '</span>';
		}

		return $output;
	}

	/**
	 * Render view in editor
	 */
	public function render_gutenberg() {
		return $this->render_content();
	}

	/**
	 * Render view in frontend
	 */
	public function render_frontend() {
		if ( ! empty( trim( $this->block_data->inner_html ) ) && apply_filters( 'gutenverse_force_dynamic', false ) ) {
			return $this->content;
		}
		$element_id      = $this->get_element_id();
		$anchor          = isset( $this->attributes['anchor'] ) ? $this->attributes['anchor'] : '';
		$display_classes = $this->set_display_classes();
		$animation_class = $this->set_animation_classes();
		$custom_classes  = $this->get_custom_classes();

		$id_attr = ! empty( $anchor ) ? ' id="' . esc_attr( $anchor ) . '"' : '';

		$data_id = '';
		if ( isset( $this->attributes['advanceAnimation']['type'] ) && ! empty( $this->attributes['advanceAnimation']['type'] ) ) {
			$id_parts = explode( '-', $element_id );
			if ( count( $id_parts ) > 1 ) {
				$data_id = ' data-id="' . esc_attr( $id_parts[1] ) . '"';
			}
		}

		$class_name = trim( "guten-element guten-video $element_id $animation_class $display_classes $custom_classes" );

		$content = '<figure' . $id_attr . ' class="' . esc_attr( $class_name ) . '"' . $data_id . '>' . $this->render_content() . '</figure>';
		$content = apply_filters( 'gutenverse_cursor_move_effect_script', $content, $this->attributes, $element_id );
		$content = apply_filters( 'gutenverse_advance_animation_script', $content, $this->attributes, $element_id, 'video' );

		return $content;
	}
}

Hry