%PDF- %PDF-
Direktori : /var/www/html/itworks/wp-content/themes/eduma/learnpress-v3/global/ |
Current File : /var/www/html/itworks/wp-content/themes/eduma/learnpress-v3/global/message.php |
<?php /** * Template for displaying global message. * * This template can be overridden by copying it to yourtheme/learnpress/global/message.php. * * @author ThimPress * @package Learnpress/Templates * @version 3.0.0 */ /** * Prevent loading this file directly */ defined( 'ABSPATH' ) || exit(); ?> <?php if ( ! $messages ) { return; } ?> <?php foreach ( $messages as $type => $message ) { ?> <?php if ( $message ) { ?> <?php foreach ( $message as $content ) { ?> <?php $options = array(); if ( is_array( $content ) ) { $options = $content['options']; $content = $content['content']; $options = wp_parse_args( $options, array( 'position' => '', 'delay-in' => 0, 'delay-out' => 0 ) ); } $type = 'message-' . $type; $classes = array( 'message ', esc_attr( $type ) ); $data = array(); if ( ! empty( $options['position'] ) ) { $classes[] = $options['position']; if ( ! empty( $options['delay-in'] ) ) { $data[] = sprintf( 'data-delay-in="%s"', $options['delay-in'] ); } if ( ! empty( $options['delay-in'] ) ) { $data[] = sprintf( 'data-delay-out="%s"', $options['delay-out'] ); } } ?> <div class="<?php echo join( ' ', $classes ); ?>" <?php echo $data ? join( ' ', $data ) : ''; ?>> <i class="fa"></i><?php echo $content; ?> </div> <?php } ?> <?php } ?> <?php } ?>