PluginProbe
Solid Performance – Your No-Code Caching, Performance, & Page Speed Solution / 1.3.0
Solid Performance – Your No-Code Caching, Performance, & Page Speed Solution v1.3.0
2.0.1 trunk 1.0.0 1.1.0 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 1.4.2 1.5.0 1.6.0 1.6.1 1.7.0 1.7.1 1.8.0 1.9.0 2.0.0
solid-performance / src / views / notices / welcome.php

welcome.php in Solid Performance – Your No-Code Caching, Performance, & Page Speed Solution 1.3.0, at src/views/notices/welcome.php

25 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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