mirror of
https://github.com/proelements/proelements.git
synced 2026-04-24 04:20:39 +00:00
v3.33.1
This commit is contained in:
@@ -0,0 +1,123 @@
|
||||
<?php
|
||||
|
||||
namespace ElementorPro\Modules\FloatingButtons\Classes\Render;
|
||||
|
||||
use Elementor\Core\Base\Providers\Social_Network_Provider;
|
||||
use Elementor\Modules\FloatingButtons\Classes\Render\Contact_Buttons_Core_Render;
|
||||
|
||||
class Contact_Buttons_Var_5_Render extends Contact_Buttons_Core_Render {
|
||||
|
||||
protected function build_layout_render_attribute(): void {
|
||||
$layout_classnames = 'e-contact-buttons e-' . $this->widget->get_name();
|
||||
$platform = $this->settings['chat_button_platform'] ?? '';
|
||||
$alignment_position_horizontal = $this->settings['advanced_horizontal_position'];
|
||||
$alignment_position_vertical = $this->settings['advanced_vertical_position'];
|
||||
$has_animations = ! empty( $this->settings['style_chat_box_exit_animation'] ) || ! empty( $this->settings['style_chat_box_entrance_animation'] );
|
||||
$custom_classes = $this->settings['advanced_custom_css_classes'] ?? '';
|
||||
$icon_name_mapping = Social_Network_Provider::get_name_mapping( $platform );
|
||||
|
||||
if ( ! empty( $alignment_position_horizontal ) ) {
|
||||
$layout_classnames .= ' has-h-alignment-' . $alignment_position_horizontal;
|
||||
}
|
||||
|
||||
if ( ! empty( $alignment_position_vertical ) ) {
|
||||
$layout_classnames .= ' has-v-alignment-' . $alignment_position_vertical;
|
||||
}
|
||||
|
||||
if ( $has_animations ) {
|
||||
$layout_classnames .= ' has-animations';
|
||||
}
|
||||
|
||||
if ( $custom_classes ) {
|
||||
$layout_classnames .= ' ' . $custom_classes;
|
||||
}
|
||||
|
||||
if ( ! empty( $platform ) ) {
|
||||
$layout_classnames .= ' has-platform-' . $icon_name_mapping;
|
||||
}
|
||||
|
||||
$this->add_layout_render_attribute( $layout_classnames );
|
||||
}
|
||||
|
||||
protected function render_chat_button(): void {
|
||||
$platform = $this->settings['chat_button_platform'] ?? '';
|
||||
$display_dot = $this->settings['chat_button_show_dot'] ?? '';
|
||||
$button_size = $this->settings['style_chat_button_size'];
|
||||
$hover_animation = $this->settings['style_button_color_hover_animation'];
|
||||
$accessible_name = $this->settings['chat_aria_label'];
|
||||
$icon_text_mapping = Social_Network_Provider::get_text_mapping( $platform );
|
||||
$aria_label = sprintf(
|
||||
/* translators: 1: Accessible name, 2: Platform name */
|
||||
esc_attr__( 'Open %1$s %2$s', 'elementor-pro' ),
|
||||
$accessible_name,
|
||||
$icon_text_mapping
|
||||
);
|
||||
|
||||
$button_classnames = 'e-contact-buttons__chat-button e-contact-buttons__chat-button-shadow';
|
||||
|
||||
if ( ! empty( $button_size ) ) {
|
||||
$button_classnames .= ' has-size-' . $button_size;
|
||||
}
|
||||
|
||||
if ( ! empty( $hover_animation ) ) {
|
||||
$button_classnames .= ' elementor-animation-' . $hover_animation;
|
||||
}
|
||||
|
||||
if ( 'yes' === $display_dot ) {
|
||||
$button_classnames .= ' has-dot';
|
||||
}
|
||||
|
||||
$link = [
|
||||
'platform' => $platform,
|
||||
'number' => $this->settings['chat_button_number'] ?? '',
|
||||
'username' => $this->settings['chat_button_username'] ?? '',
|
||||
'email_data' => [
|
||||
'chat_button_mail' => $this->settings['chat_button_mail'] ?? '',
|
||||
'chat_button_mail_subject' => $this->settings['chat_button_mail_subject'] ?? '',
|
||||
'chat_button_mail_body' => $this->settings['chat_button_mail_body'] ?? '',
|
||||
],
|
||||
'viber_action' => $this->settings['chat_button_viber_action'] ?? '',
|
||||
'location' => $this->settings['chat_button_waze'] ?? '',
|
||||
];
|
||||
|
||||
if ( $this->is_url_link( $platform ) ) {
|
||||
$this->render_link_attributes( $link, 'formatted-cta' );
|
||||
|
||||
$this->widget->add_render_attribute( 'formatted-cta', [
|
||||
'class' => $button_classnames,
|
||||
'aria-label' => $aria_label,
|
||||
] );
|
||||
} else {
|
||||
$formatted_link = $this->get_formatted_link( $link, 'chat_button' );
|
||||
|
||||
$this->widget->add_render_attribute( 'formatted-cta', [
|
||||
'class' => $button_classnames,
|
||||
'href' => $formatted_link,
|
||||
'rel' => 'noopener noreferrer',
|
||||
'target' => '_blank',
|
||||
'aria-label' => $aria_label,
|
||||
] );
|
||||
}
|
||||
|
||||
?>
|
||||
<div class="e-contact-buttons__chat-button-container">
|
||||
<a <?php echo $this->widget->get_render_attribute_string( 'formatted-cta' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>>
|
||||
<?php
|
||||
$this->render_chat_button_icon();
|
||||
?>
|
||||
</a>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
|
||||
public function render(): void {
|
||||
$this->build_layout_render_attribute();
|
||||
?>
|
||||
<div <?php echo $this->widget->get_render_attribute_string( 'layout' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>>
|
||||
<?php
|
||||
$this->render_chat_button();
|
||||
?>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user