Admin
5 years ago
Commands
6 years ago
Db
6 years ago
Ecommerce
6 years ago
Report
6 years ago
Site
5 years ago
TrackingCode
5 years ago
User
5 years ago
views
6 years ago
API.php
5 years ago
Access.php
6 years ago
AjaxTracker.php
5 years ago
Annotations.php
6 years ago
Bootstrap.php
6 years ago
Capabilities.php
6 years ago
Compatibility.php
6 years ago
Email.php
5 years ago
Installer.php
6 years ago
Logger.php
5 years ago
OptOut.php
5 years ago
Paths.php
6 years ago
PrivacyBadge.php
6 years ago
Referral.php
6 years ago
Roles.php
6 years ago
ScheduledTasks.php
6 years ago
Settings.php
5 years ago
Site.php
6 years ago
TrackingCode.php
5 years ago
Uninstaller.php
6 years ago
Updater.php
6 years ago
User.php
6 years ago
PrivacyBadge.php
45 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 | namespace WpMatomo; |
| 11 | |
| 12 | if ( ! defined( 'ABSPATH' ) ) { |
| 13 | exit; // if accessed directly |
| 14 | } |
| 15 | |
| 16 | class PrivacyBadge { |
| 17 | |
| 18 | public function register_hooks() { |
| 19 | add_shortcode( 'matomo_privacy_badge', array( $this, 'show_privacy_page' ) ); |
| 20 | } |
| 21 | |
| 22 | public function show_privacy_page( $atts ) { |
| 23 | $a = shortcode_atts( |
| 24 | array( |
| 25 | 'size' => '120', |
| 26 | 'align' => '', |
| 27 | ), |
| 28 | $atts |
| 29 | ); |
| 30 | |
| 31 | $option = sprintf( ' width="%s" height="%s"', esc_attr( $a['size'] ), esc_attr( $a['size'] ) ); |
| 32 | |
| 33 | if ( ! empty( $a['align'] ) ) { |
| 34 | $option .= sprintf( ' align="%s"', esc_attr( $a['align'] ) ); |
| 35 | } |
| 36 | |
| 37 | $url = plugins_url( 'assets/img/privacybadge.png', MATOMO_ANALYTICS_FILE ); |
| 38 | |
| 39 | $title = __( 'Your privacy protected! This website uses Matomo.', 'matomo' ); |
| 40 | |
| 41 | return sprintf( '<img alt="%s" src="%s" %s>', $title, esc_attr( $url ), $option ); |
| 42 | } |
| 43 | |
| 44 | } |
| 45 |