block_name ); $css_generator->add_class_styles( '{{WRAPPER}} .ablocks-block-logout__label', $this->get_log_out_label_color( $attributes ) ); $css_generator->add_class_styles( '{{WRAPPER}} .ablocks-block-logout', $this->get_log_out_css( $attributes ), $this->get_log_out_css( $attributes, 'Tablet' ), $this->get_log_out_css( $attributes, 'Mobile' ) ); $css_generator->add_class_styles( '{{WRAPPER}} .ablocks-block-logout__name', $this->get_name_css( $attributes ) ); $css_generator->add_class_styles( '{{WRAPPER}} .ablocks-block-logout__avatar', $this->get_avatar_css( $attributes ), $this->get_avatar_css( $attributes, 'Tablet' ), $this->get_avatar_css( $attributes, 'Mobile' ) ); $css_generator->add_class_styles( '{{WRAPPER}} .ablocks-block-logout__avatar:hover', $this->get_avatar_border_hover_css( $attributes ), $this->get_avatar_border_hover_css( $attributes, 'Tablet' ), $this->get_avatar_border_hover_css( $attributes, 'Mobile' ) ); return $css_generator->generate_css(); } public function get_log_out_label_color( $attributes, $device = '' ) { $typography = isset( $attributes['labelTypography'] ) ? $attributes['labelTypography'] : ''; $text_stroke = isset( $attributes['labelTextStroke'] ) ? $attributes['labelTextStroke'] : ''; $text_shadow = isset( $attributes['labelTextShadow'] ) ? $attributes['labelTextShadow'] : ''; $typographyglobal = ! empty( $attributes['labelTypographyGlobal'] ) ? $attributes['labelTypographyGlobal'] : array(); return array_merge( [ 'color' => Color::get_css( isset( $attributes['logOutLabelColor'] ) ? $attributes['logOutLabelColor'] : '' ) ], [ 'background' => Color::get_css( isset( $attributes['logOutLabelBgColor'] ) ? $attributes['logOutLabelBgColor'] : '' ) ], Typography::get_css( $typography, '', $device, $typographyglobal ), TextStroke::get_css( $text_stroke, '', $device ), TextShadow::get_css( $text_shadow, '', $device ), ); } public function get_log_out_css( $attributes, $device = '' ) { $log_out_css = []; if ( ! empty( $attributes['direction'][ 'value' . $device ] ) ) { $log_out_css['flex-direction'] = $attributes['direction'][ 'value' . $device ]; } if ( isset( $attributes['labelAlignment'][ 'value' . $device ] ) ) { $log_out_css['justify-content'] = $attributes['labelAlignment'][ 'value' . $device ]; } return array_merge( [ 'background' => Color::get_css( isset( $attributes['logOutLabelBgColor'] ) ? $attributes['logOutLabelBgColor'] : '' ) ], $log_out_css ); } public function get_avatar_css( $attributes, $device = '' ) { return array_merge( Range::get_css([ 'attributeValue' => $attributes['avatarWidth'], 'attribute_object_key' => 'value', 'isResponsive' => true, 'defaultValue' => 40, 'hasUnit' => true, 'unitDefaultValue' => 'px', 'property' => 'width', 'device' => $device, ]), Range::get_css([ 'attributeValue' => $attributes['avatarHeight'], 'attribute_object_key' => 'value', 'isResponsive' => true, 'defaultValue' => 40, 'hasUnit' => true, 'unitDefaultValue' => 'px', 'property' => 'height', 'device' => $device, ]), isset( $attributes['avatarBorder'] ) ? Border::get_css( $attributes['avatarBorder'], '', $device ) : [], ); } public function get_avatar_border_hover_css( $attributes, $device = '' ) { return array_merge( isset( $attributes['avatarBorder'] ) ? Border::get_hover_css( $attributes['avatarBorder'], '', $device ) : [] ); } public function get_name_css( $attributes, $device = '' ) { $typography = isset( $attributes['nameTypography'] ) ? $attributes['nameTypography'] : ''; $text_stroke = isset( $attributes['nameTextStroke'] ) ? $attributes['nameTextStroke'] : ''; $text_shadow = isset( $attributes['nameTextShadow'] ) ? $attributes['nameTextShadow'] : ''; $typographyglobal = ! empty( $attributes['nameTypographyGlobal'] ) ? $attributes['nameTypographyGlobal'] : array(); return array_merge( [ 'color' => Color::get_css( isset( $attributes['nameColor'] ) ? $attributes['nameColor'] : '' ) ], Typography::get_css( $typography, '', $device, $typographyglobal ), TextStroke::get_css( $text_stroke, '', $device ), TextShadow::get_css( $text_shadow, '', $device ) ); } public function render_block_content( $attributes, $content, $block_instance ) { $logout_redirect_option = isset( $attributes['logoutRedirect'] ) ? $attributes['logoutRedirect'] : 'current-url'; if ( $logout_redirect_option === 'current-url' ) { // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotValidated, WordPress.Security.ValidatedSanitizedInput.MissingUnslash $logout_redirect_url = ( is_ssl() ? 'https://' : 'http://' ) . sanitize_text_field( $_SERVER['HTTP_HOST'] ) . sanitize_text_field( $_SERVER['REQUEST_URI'] ); } elseif ( $logout_redirect_option === 'custom-url' ) { $logout_redirect_url = isset( $attributes['logoutCustomUrl'] ) && ! empty( $attributes['logoutCustomUrl'] ) ? esc_url( $attributes['logoutCustomUrl'] ) : home_url(); } $login_redirect_option = isset( $attributes['loginRedirect'] ) ? $attributes['loginRedirect'] : 'current-url'; if ( $login_redirect_option === 'current-url' ) { // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotValidated, WordPress.Security.ValidatedSanitizedInput.MissingUnslash $login_redirect_url = ( is_ssl() ? 'https://' : 'http://' ) . sanitize_text_field( $_SERVER['HTTP_HOST'] ) . sanitize_text_field( $_SERVER['REQUEST_URI'] ); } elseif ( $login_redirect_option === 'custom-url' ) { $login_redirect_url = isset( $attributes['loginCustomUrl'] ) && ! empty( $attributes['loginCustomUrl'] ) ? esc_url( $attributes['loginCustomUrl'] ) : home_url(); } $current_user = wp_get_current_user(); $profile_picture = esc_url( get_avatar_url( $current_user->ID ) ); $display_name = sanitize_text_field( $current_user->display_name ); $button_icon_url = isset( $attributes['buttonIconUrl'] ) && ! empty( $attributes['buttonIconUrl'] ) ? esc_url( $attributes['buttonIconUrl'] ) : ''; $button_class = isset( $attributes['buttonClass'] ) ? sanitize_html_class( $attributes['buttonClass'] ) : 'ablocks-block-logout__label'; $is_logged_in = is_user_logged_in(); $is_show_avatar = isset( $attributes['isShowAvatar'] ) && $attributes['isShowAvatar']; $is_show_name = isset( $attributes['isShowName'] ) && $attributes['isShowName']; $button_text = $is_logged_in ? ( isset( $attributes['logOutLabel'] ) ? sanitize_text_field( $attributes['logOutLabel'] ) : __( '(Log Out)', 'ablocks' ) ) : ( isset( $attributes['logInLabel'] ) ? sanitize_text_field( $attributes['logInLabel'] ) : __( '(Log In)', 'ablocks' ) ); $action_url = $is_logged_in ? wp_logout_url( $logout_redirect_url ) : wp_login_url( $login_redirect_url ); ob_start(); ?>
<?php echo esc_attr( $display_name ); ?> ()