| 1 |
<?php |
| 2 |
/** |
| 3 |
* The template used to output custom formatting for the welcome admin notice. |
| 4 |
* |
| 5 |
* @since 0.1.0 |
| 6 |
* |
| 7 |
* @package SolidWP\Performance |
| 8 |
*/ |
| 9 |
|
| 10 |
?> |
| 11 |
<div class="icon-border"> |
| 12 |
<img src="<?php echo esc_url( plugin_dir_url( SWPSP_PLUGIN_FILE ) . '/images/info.svg' ); ?>" alt="An info icon"/> |
| 13 |
</div> |
| 14 |
<div class="notice-content"> |
| 15 |
<div class="notice-title"> |
| 16 |
<h2><?php echo esc_html__( 'Welcome to Solid Performance!', 'solid-performance' ); ?></h2> |
| 17 |
<span class="notice-status"> |
| 18 |
<img src="<?php echo esc_url( plugin_dir_url( SWPSP_PLUGIN_FILE ) . '/images/check.svg' ); ?>" alt="A green check mark"/> |
| 19 |
<?php echo esc_html__( 'Solid Performance activated', 'solid-performance' ); ?> |
| 20 |
</span> |
| 21 |
</div> |
| 22 |
<p><?php echo esc_html__( 'The page cache is enabled. Visit the Solid Performance settings page to customize your configuration.', 'solid-performance' ); ?></p> |
| 23 |
</div> |
| 24 |
<a class="settings-page-button" href="<?php echo esc_url( admin_url( 'options-general.php?page=' . \SolidWP\Performance\Admin\Settings_Page::MENU_SLUG ) ); ?>"><?php echo esc_html__( 'Go to settings', 'solid-performance' ); ?></a> |
| 25 |
|