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-advanced-heading.php
<?php
/**
 * Advanced Heading Block class
 *
 * @author Jegstudio
 * @since 1.0.0
 * @package gutenverse\block
 */

namespace Gutenverse\Block;

use Gutenverse\Framework\Block\Block_Abstract;

/**
 * Class Advanced Heading Block
 *
 * @package gutenverse\block
 */
class Advanced_Heading extends Block_Abstract {

	/**
	 * Render content
	 *
	 * @return string
	 */
	public function render_content() {
		$title_tag  = isset( $this->attributes['titleTag'] ) ? $this->attributes['titleTag'] : 'h2';
		$sub_tag    = isset( $this->attributes['subTag'] ) ? $this->attributes['subTag'] : 'span';
		$text       = isset( $this->attributes['text'] ) ? $this->attributes['text'] : 'Heading ';
		$focus_text = isset( $this->attributes['focusText'] ) ? $this->attributes['focusText'] : 'Focused';
		$sub_text   = isset( $this->attributes['subText'] ) ? $this->attributes['subText'] : '';
		$show_sub   = isset( $this->attributes['showSub'] ) ? $this->attributes['showSub'] : 'bottom';
		$show_line  = isset( $this->attributes['showLine'] ) ? $this->attributes['showLine'] : 'before';

		$output = '';

		if ( 'top' === $show_line ) {
			$output .= '<div class="heading-line top"></div>';
		}

		$sub_text              = wp_kses_post( $sub_text );
		$sub_text_dynamic_list = isset( $this->attributes['subTextDynamicList'] ) ? $this->attributes['subTextDynamicList'] : array();

		$sub_text = apply_filters(
			'gutenverse_dynamic_generate_dynamic_parse_list_php',
			$sub_text,
			$sub_text_dynamic_list
		);
		if ( 'top' === $show_sub ) {
			$output .= '<' . esc_attr( $sub_tag ) . ' class="heading-subtitle">' . $sub_text . '</' . esc_attr( $sub_tag ) . '>';
		}

		if ( 'top' === $show_sub && 'between' === $show_line ) {
			$output .= '<div class="heading-line between"></div>';
		}

		$section_class = 'heading-section';
		if ( in_array( $show_line, array( 'top', 'bottom', 'between' ), true ) ) {
			$section_class .= ' outside-line';
		}

		$output .= '<div class="' . esc_attr( $section_class ) . '">';
		if ( 'before' === $show_line ) {
			$output .= '<div class="heading-line before"></div>';
		}

		$output .= '<' . esc_attr( $title_tag ) . ' class="heading-title">';

		$text              = wp_kses_post( $text );
		$text_dynamic_list = isset( $this->attributes['textDynamicList'] ) ? $this->attributes['textDynamicList'] : array();

		$text = apply_filters(
			'gutenverse_dynamic_generate_dynamic_parse_list_php',
			$text,
			$text_dynamic_list
		);

		$focus_text              = wp_kses_post( $focus_text );
		$focus_text_dynamic_list = isset( $this->attributes['focusTextDynamicList'] ) ? $this->attributes['focusTextDynamicList'] : array();

		$focus_text = apply_filters(
			'gutenverse_dynamic_generate_dynamic_parse_list_php',
			$focus_text,
			$focus_text_dynamic_list
		);

		$output .= '<span class="heading-title">' . $text . '</span>';
		$output .= '<span class="heading-focus">' . $focus_text . '</span>';
		$output .= '</' . esc_attr( $title_tag ) . '>';

		if ( 'after' === $show_line ) {
			$output .= '<div class="heading-line after"></div>';
		}
		$output .= '</div>';

		if ( 'bottom' === $show_sub && 'between' === $show_line ) {
			$output .= '<div class="heading-line between"></div>';
		}

		if ( 'bottom' === $show_sub ) {
			$output .= '<' . esc_attr( $sub_tag ) . ' class="heading-subtitle">' . $sub_text . '</' . esc_attr( $sub_tag ) . '>';
		}

		if ( 'bottom' === $show_line ) {
			$output .= '<div class="heading-line bottom"></div>';
		}

		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();
		$display_classes = $this->set_display_classes();
		$animation_class = $this->set_animation_classes();
		$anchor          = isset( $this->attributes['anchor'] ) ? $this->attributes['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 = 'guten-element guten-advanced-heading ' . $element_id . $display_classes . $animation_class;

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

		$content = '<div' . $id_attr . ' class="' . esc_attr( trim( $class_name ) ) . '"' . $data_id . '>' . $this->render_content() . '</div>';
		$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, 'advance-heading' );
		return $content;
	}
}

Hry