Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
the-events-calendar
/
src
/
views
/
v2
/
components
:
messages.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * View: Messages * * Override this template in your own theme by creating a file at: * [your-theme]/tribe/events/v2/components/messages.php * * See more documentation about our views templating system. * * @link http://evnt.is/1aiy * * @version 6.12.0 * @since 6.2.0 Resolved spacing issues. * @since 6.12.0 Small tweaks for accessibility. * * @var array<string,array<string>> $messages An array of user-facing messages, managed by the View. * @var array<string,mixed> $attributes A optional map of attributes that should be applied to the wrapper div element. * @var string $wp_version Global WP version. * * @package the-events-calendar/views/v2 */ if ( empty( $messages ) ) { return; } global $wp_version; $default_classes = [ 'tribe-events-header__messages', 'tribe-events-c-messages', 'tribe-common-b2' ]; $classes = isset( $classes ) ? array_merge( $default_classes, $classes ) : $default_classes; $attributes = isset( $attributes ) ? (array) $attributes : []; ?> <div <?php tribe_classes( $classes ); ?> <?php tribe_attributes( $attributes ); ?>> <?php foreach ( $messages as $message_type => $message_group ) : ?> <div class="tribe-events-c-messages__message tribe-events-c-messages__message--<?php echo esc_attr( $message_type ); ?>" role="alert"> <?php $this->template( 'components/messages/' . esc_attr( $message_type ) . '-icon' ); ?> <div class="tribe-events-c-messages__message-list" tabindex="0" role="alert" aria-live="polite"> <?php foreach ( $message_group as $key => $message ) : ?> <div class="tribe-events-c-messages__message-list-item" <?php tribe_attributes( [ 'data-key' => esc_attr( (string) $key ) ] ); ?> > <?php echo version_compare( $wp_version, '5.0', '>=' ) ? wp_kses_post( $message ) : esc_html( $message ); ?> </div> <?php endforeach; ?> </div> </div> <?php endforeach; ?> </div>