| Server IP : 213.186.33.4 / Your IP : 216.73.216.146 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www/wp-content/themes/Divi/includes/builder/module/helpers/ |
Upload File : |
<?php if ( ! defined( 'ABSPATH' ) ) {
die( 'Direct access forbidden.' );
}
/**
* Overlay helper methods.
*
* Class ET_Builder_Module_Helper_Overlay
*/
class ET_Builder_Module_Helper_Overlay {
/**
* Get an overlay html tag's attributes.
*
* @since 3.29
*
* @param array $args
*
* @return array
*/
public static function get_attributes( $args ) {
$attributes = array();
if ( ! empty( $args['icon'] ) ) {
$attributes['data-icon'] = esc_attr( et_pb_process_font_icon( $args['icon'] ) );
}
if ( ! empty( $args['icon_tablet'] ) ) {
$attributes['data-icon-tablet'] = esc_attr( et_pb_process_font_icon( $args['icon_tablet'] ) );
}
if ( ! empty( $args['icon_phone'] ) ) {
$attributes['data-icon-phone'] = esc_attr( et_pb_process_font_icon( $args['icon_phone'] ) );
}
return $attributes;
}
/**
* Render an overlay html tag's attributes.
*
* @since 3.29
*
* @param array $args
*
* @return string
*/
public static function render_attributes( $args ) {
$attributes = self::get_attributes( $args );
$html = array();
foreach ( $attributes as $attribute => $value ) {
$html[] = sprintf(
'%1$s="%2$s"',
et_core_intentionally_unescaped( $attribute, 'fixed_string' ),
et_core_esc_previously( $value )
);
}
return implode( ' ', $html );
}
/**
* Render an overlay html tag.
*
* @since 3.29
*
* @param array $args
*
* @return string
*/
public static function render( $args ) {
$classes = array( 'et_overlay' );
if ( ! empty( $args['icon'] ) ) {
$classes[] = 'et_pb_inline_icon';
}
if ( ! empty( $args['icon_tablet'] ) ) {
$classes[] = 'et_pb_inline_icon_tablet';
}
if ( ! empty( $args['icon_phone'] ) ) {
$classes[] = 'et_pb_inline_icon_phone';
}
return sprintf(
'<span class="%1$s" %2$s></span>',
et_core_intentionally_unescaped( implode( ' ', $classes ), 'fixed_string' ),
et_core_esc_previously( self::render_attributes( $args ) )
);
}
}