access.php
4 years ago
advanced_settings.php
4 years ago
exclusion_settings.php
4 years ago
geolocation_settings.php
4 years ago
get_started.php
4 years ago
import_wp_statistics.php
4 years ago
info.php
4 years ago
info_bug_report.php
4 years ago
info_help.php
4 years ago
info_high_traffic.php
4 years ago
info_multisite.php
4 years ago
info_newsletter.php
4 years ago
info_shared.php
4 years ago
marketplace.php
4 years ago
privacy_gdpr.php
4 years ago
settings.php
4 years ago
settings_errors.php
4 years ago
summary.php
4 years ago
systemreport.php
3 years ago
tracking.php
3 years ago
update_notice_clear_cache.php
5 years ago
info.php
108 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 | * phpcs considers all of our variables as global and want them prefixed with matomo |
| 11 | * phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound |
| 12 | */ |
| 13 | use WpMatomo\Admin\Menu; |
| 14 | |
| 15 | if ( ! defined( 'ABSPATH' ) ) { |
| 16 | exit; |
| 17 | } |
| 18 | |
| 19 | ?> |
| 20 | |
| 21 | <div class="wrap"> |
| 22 | <div id="icon-plugins" class="icon32"></div> |
| 23 | |
| 24 | <?php require 'info_shared.php'; ?> |
| 25 | <?php |
| 26 | $show_troubleshooting_link = true; |
| 27 | require 'info_help.php'; |
| 28 | ?> |
| 29 | |
| 30 | <h2><?php esc_html_e( 'Support the project', 'matomo' ); ?></h2> |
| 31 | <p> |
| 32 | <?php |
| 33 | echo sprintf( |
| 34 | esc_html__( |
| 35 | 'Matomo is a collaborative project brought to you by %1$sMatomo team%2$s members as well as many other contributors around the globe. If you like Matomo, |
| 36 | %3$splease give us a review%4$s and spread the word about us.', |
| 37 | 'matomo' |
| 38 | ), |
| 39 | '<a target="_blank" rel="noreferrer noopener" href="https://matomo.org/team/">', |
| 40 | '</a>', |
| 41 | '<a target="_blank" rel="noreferrer noopener" href="https://wordpress.org/support/plugin/matomo/reviews/?rate=5#new-post">', |
| 42 | '<span class="dashicons-before dashicons-star-filled" style="color:gold;"></span><span class="dashicons-before dashicons-star-filled" style="color:gold;"></span><span class="dashicons-before dashicons-star-filled" style="color:gold;"></span><span class="dashicons-before dashicons-star-filled" style="color:gold;"></span><span class="dashicons-before dashicons-star-filled" style="color:gold;"></span></a>' |
| 43 | ); |
| 44 | ?> |
| 45 | <br/><br/> |
| 46 | Matomo will always cost you nothing to use, but that doesn't mean it costs us nothing to make. |
| 47 | Matomo needs your continued support to grow and thrive. |
| 48 | <?php |
| 49 | echo sprintf( |
| 50 | esc_html__( |
| 51 | 'You can also help us by %1$sdonating%2$s or by %3$spurchasing premium plugins%4$s which fund the |
| 52 | development of the free Matomo Analytics version.', |
| 53 | 'matomo' |
| 54 | ), |
| 55 | '<a href="' . esc_url( Menu::get_matomo_goto_url( Menu::REPORTING_GOTO_ADMIN ) ) . '">', |
| 56 | '</a>', |
| 57 | '<a href="https://plugins.matomo.org/premium" target="_blank" rel="noreferrer noopener">', |
| 58 | '</a>' |
| 59 | ); |
| 60 | ?> |
| 61 | Every penny will help. |
| 62 | </p> |
| 63 | |
| 64 | <?php require 'info_newsletter.php'; ?> |
| 65 | |
| 66 | <h2><?php esc_html_e( 'High traffic websites', 'matomo' ); ?></h2> |
| 67 | <?php require 'info_high_traffic.php'; ?> |
| 68 | |
| 69 | <?php require 'info_bug_report.php'; ?> |
| 70 | |
| 71 | <div class="matomo-footer"> |
| 72 | <ul> |
| 73 | <li> |
| 74 | <a target="_blank" rel="noreferrer noopener" href="https://matomo.org/newsletter/"><span |
| 75 | class="dashicons-before dashicons-email"></span></a> |
| 76 | <a target="_blank" rel="noreferrer noopener" |
| 77 | href="https://matomo.org/newsletter/"><?php esc_html_e( 'Newsletter', 'matomo' ); ?></a> |
| 78 | </li> |
| 79 | <li> |
| 80 | <a target="_blank" rel="noreferrer noopener" href="https://www.facebook.com/Matomo.org"><span |
| 81 | class="dashicons-before dashicons-facebook"></span></a> |
| 82 | <a target="_blank" rel="noreferrer noopener" href="https://www.facebook.com/Matomo.org">Facebook</a> |
| 83 | </li> |
| 84 | <li> |
| 85 | <a target="_blank" rel="noreferrer noopener" href="https://twitter.com/matomo_org"><span |
| 86 | class="dashicons-before dashicons-twitter"></span></a> |
| 87 | <a target="_blank" rel="noreferrer noopener" href="https://twitter.com/matomo_org">Twitter</a> |
| 88 | </li> |
| 89 | <li> |
| 90 | <a target="_blank" rel="noreferrer noopener" href="https://www.linkedin.com/groups/867857/">Linkedin</a> |
| 91 | </li> |
| 92 | <li> |
| 93 | <a target="_blank" rel="noreferrer noopener" href="https://github.com/matomo-org/matomo">GitHub</a> |
| 94 | </li> |
| 95 | </ul> |
| 96 | <ul> |
| 97 | <li><a target="_blank" rel="noreferrer noopener" |
| 98 | href="https://matomo.org/blog/"><?php esc_html_e( 'Blog', 'matomo' ); ?></a></li> |
| 99 | <li><a target="_blank" rel="noreferrer noopener" |
| 100 | href="https://developer.matomo.org"><?php esc_html_e( 'Developers', 'matomo' ); ?></a></li> |
| 101 | <li><a target="_blank" rel="noreferrer noopener" |
| 102 | href="https://plugins.matomo.org"><?php esc_html_e( 'Marketplace', 'matomo' ); ?></a></li> |
| 103 | <li><a target="_blank" rel="noreferrer noopener" |
| 104 | href="https://matomo.org/thank-you-all/"><?php esc_html_e( 'Credits', 'matomo' ); ?></a></li> |
| 105 | </ul> |
| 106 | </div> |
| 107 | </div> |
| 108 |