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-animated-text.php
<?php
/**
 * Animated Text Block class
 *
 * @author Jegstudio
 * @since 1.0.0
 * @package gutenverse\block
 */

namespace Gutenverse\Block;

use Gutenverse\Framework\Block\Block_Abstract;

/**
 * Class Animated Text Block
 *
 * @package gutenverse\block
 */
class Animated_Text extends Block_Abstract {

	/**
	 * Render content
	 *
	 * @return string
	 */
	public function render_content() {
		$text                 = isset( $this->attributes['text'] ) ? $this->attributes['text'] : 'Placeholder Text';
		$title_tag            = isset( $this->attributes['titleTag'] ) ? $this->attributes['titleTag'] : 'h2';
		$before_text_animated = isset( $this->attributes['beforeTextAnimated'] ) ? $this->attributes['beforeTextAnimated'] : 'Before ';
		$after_text_animated  = isset( $this->attributes['afterTextAnimated'] ) ? $this->attributes['afterTextAnimated'] : ' After';

		$output  = '<' . esc_attr( $title_tag ) . '>';
		$output .= '<span class="non-animated-text before-text">' . wp_kses_post( $before_text_animated ) . '</span>';
		$output .= '<span class="text-content">';
		$output .= '<span class="text-wrapper">';
		$output .= '<span class="letter">' . wp_kses_post( $text ) . '</span>';
		$output .= '</span>';
		$output .= '<span class="highlighted"></span>';
		$output .= '</span>';
		$output .= '<span class="non-animated-text after-text">' . wp_kses_post( $after_text_animated ) . '</span>';
		$output .= '</' . esc_attr( $title_tag ) . '>';

		return $output;
	}

	/**
	 * Get animation props
	 *
	 * @return array
	 */
	private function get_animation_props() {
		$style                = isset( $this->attributes['style'] ) ? $this->attributes['style'] : 'zoom';
		$text                 = isset( $this->attributes['text'] ) ? $this->attributes['text'] : 'Placeholder Text';
		$loop                 = isset( $this->attributes['loop'] ) ? $this->attributes['loop'] : true;
		$split_by_word        = isset( $this->attributes['splitByWord'] ) ? $this->attributes['splitByWord'] : false;
		$text_type            = isset( $this->attributes['textType'] ) ? $this->attributes['textType'] : 'default';
		$rotation_texts       = isset( $this->attributes['rotationTexts'] ) ? $this->attributes['rotationTexts'] : array();
		$highlighted_style    = isset( $this->attributes['highlightedStyle'] ) ? $this->attributes['highlightedStyle'] : 'circle';
		$highlight_gradient   = isset( $this->attributes['highlightGradient'] ) ? $this->attributes['highlightGradient'] : array();
		$highlight_color_type = isset( $this->attributes['highlightColorType'] ) ? $this->attributes['highlightColorType'] : 'color';
		$highlight_color      = isset( $this->attributes['highlightColor'] ) ? $this->attributes['highlightColor'] : array();
		$animation_duration   = isset( $this->attributes['animationDuration'] ) ? (int) $this->attributes['animationDuration'] : 600;
		$display_duration     = isset( $this->attributes['displayDuration'] ) ? (int) $this->attributes['displayDuration'] : 1000;
		$transition_duration  = isset( $this->attributes['transitionDuration'] ) ? (int) $this->attributes['transitionDuration'] : 500;

		return array(
			'loop'               => $loop,
			'splitByWord'        => $split_by_word,
			'style'              => $style,
			'textType'           => $text_type,
			'text'               => $text,
			'elementId'          => $this->get_element_id(),
			'rotationTexts'      => $rotation_texts,
			'highlightedStyle'   => $highlighted_style,
			'highlightGradient'  => $highlight_gradient,
			'highlightColorType' => $highlight_color_type,
			'highlightColor'     => $highlight_color,
			'animationDuration'  => $animation_duration,
			'displayDuration'    => $display_duration,
			'transitionDuration' => $transition_duration,
		);
	}

	/**
	 * 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();
		$display_classes = $this->set_display_classes();
		$animation_class = $this->set_animation_classes();
		$style           = isset( $this->attributes['style'] ) ? $this->attributes['style'] : 'zoom';
		$anchor          = isset( $this->attributes['anchor'] ) ? $this->attributes['anchor'] : '';

		$class_name = 'guten-element guten-animated-text ' . $element_id . $display_classes . $animation_class;

		if ( ! empty( $style ) && 'none' !== $style ) {
			$class_name .= ' style-' . $style;
		}

		$id_attr        = ! empty( $anchor ) ? ' id="' . esc_attr( $anchor ) . '"' : '';
		$data_animation = ' data-animation=\'' . wp_json_encode( $this->get_animation_props() ) . '\'';
		$content        = '<div' . $id_attr . ' class="' . esc_attr( trim( $class_name ) ) . '"' . $data_animation . '>' . $this->render_content() . '</div>';
		$content        = apply_filters( 'gutenverse_cursor_move_effect_script', $content, $this->attributes, $element_id );

		return $content;
	}
}

Hry