referral.php
24 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Matomo - free/libre analytics platform |
| 4 | * |
| 5 | * @link https://matomo.org |
| 6 | * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 7 | * @package matomo |
| 8 | */ |
| 9 | |
| 10 | if ( ! defined( 'ABSPATH' ) ) { |
| 11 | exit; |
| 12 | } |
| 13 | ?> |
| 14 | <div class="notice notice-info is-dismissible" id="matomo-referral"> |
| 15 | <p> |
| 16 | <?php esc_html_e( 'Like Matomo? We would really appreciate if you took 1 minute to rate us.', 'matomo' ); ?> |
| 17 | |
| 18 | <a href="https://wordpress.org/support/plugin/matomo/reviews/?rate=5#new-post" target="_blank" |
| 19 | rel="noreferrer noopener" |
| 20 | class="button matomo-dismiss-forever"><?php esc_html_e( 'Rate Matomo', 'matomo' ); ?></a> |
| 21 | </p> |
| 22 | <div style="clear:both;"></div> |
| 23 | </div> |
| 24 |