Server IP : 85.214.239.14 / Your IP : 3.147.78.249 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /var/www/wordpress/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'] ) ); } if ( ! empty( $args['icon_sticky'] ) ) { $attributes['data-icon-sticky'] = esc_attr( et_pb_process_font_icon( $args['icon_sticky'] ) ); } 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 ) { $attributes = et_core_esc_previously( self::render_attributes( $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'; } if ( ! empty( $args['icon_sticky'] ) ) { $classes[] = 'et_pb_inline_icon_sticky'; } return sprintf( '<span class="%1$s"%2$s></span>', et_core_intentionally_unescaped( implode( ' ', $classes ), 'fixed_string' ), ( '' !== $attributes ? ' ' . $attributes : '' ) ); } }