File "update-6-0-0.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/src/admin-views/notices/update-6-0-0.php
File size: 1.18 KB
MIME-type: text/x-php
Charset: utf-8
<?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>