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
/
common
/
src
/
admin-views
/
components
:
tooltip.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * View: Event Automator Tooltip. * * Override this template in your own theme by creating a file at: * [your-theme]/tribe/admin-views/components/tooltip.php * * See more documentation about our views templating system. * * @since 1.4.0 * * @version 1.4.0 * * @link http://evnt.is/1aiy * * @var array<string,string> $classes_wrap An array of classes for the tooltip wrap. * @var string $message The message to add to the tooltip. */ $wrap_classes = [ 'tribe-tooltip', 'event-helper-text' ]; if ( ! empty( $classes_wrap ) ) { $wrap_classes = array_merge( $wrap_classes, $classes_wrap ); } ?> <div <?php tribe_classes( $wrap_classes ); ?> aria-expanded="false" > <span class="dashicons dashicons-info"></span> <div class="down"> <p> <?php echo wp_kses( $message, [ 'a' => [ 'href' => [] ] ] ); ?> </p> </div> </div>