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
/
admin-views
/
notices
:
update-6-0-0.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * View: TEC 6.0.0 update notification * * @since 6.0.0 * * @var string $title - The notification title. * @var string $description - The notification text. * @var string $upgrade_link - The link to the upgrade tab. * @var string $learn_link - The link to the knowledge base article. */ $main = Tribe__Events__Main::instance(); ?> <div class="tec-update-notice"> <h3 class="tec-update-notice__title"> <img src="<?php echo esc_url( tribe_resource_url( 'warning.svg', false, 'src/resources/images/icons/', $main ) ); ?>" alt="alert icon" class="tec-inline-icon"/> <?php echo esc_html( $title ); ?> </h3> <p class="tec-update-notice__description"> <?php echo esc_html( $description ); ?> </p> <div class="tec-update-notice__actions"> <a class="tec-update-notice__button button" href="<?php echo esc_url( get_admin_url( null, $upgrade_link ) ); ?>"> <?php esc_html_e( 'Upgrade your events', 'the-events-calendar' ); ?> </a> <a class="tec-update-notice__link" href="<?php echo esc_url( $learn_link ); ?>"> <?php esc_html_e( 'Learn more', 'the-events-calendar' ); ?> </a> </div> </div>