PluginProbe ʕ •ᴥ•ʔ
ShareThis Dashboard for Google Analytics / 2.0.3
ShareThis Dashboard for Google Analytics v2.0.3
3.3.2 trunk 1.0.7 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2.5 2.3.5 2.3.6 2.3.7 2.3.8 2.4.0 2.4.1 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 3.0.0 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.3.0 3.3.1
googleanalytics / view / ga_notice.php
googleanalytics / view Last commit date
ga_accounts_selector.php 9 years ago ga_code.php 9 years ago ga_dashboard_widget.php 9 years ago ga_notice.php 9 years ago ga_oauth_notice.php 9 years ago ga_wp_notice.php 9 years ago page.php 9 years ago statistics.php 9 years ago stats.php 9 years ago
ga_notice.php
21 lines
1 <div id="googleanalytics_terms_notice"
2 class="notice notice-warning <?php echo ( Ga_Helper::is_plugin_page() ) ? '' : 'is-dismissible' ?>">
3 <p>
4 Google Analytics <?php echo esc_html( GOOGLEANALYTICS_VERSION ); ?> plugin <a
5 href="http://www.sharethis.com/news/2016/12/sharethis-adds-analytics-plugin-to-suite-of-tools/"
6 target="_blank">has joined the ShareThis family.</a> <strong>A host of new features</strong> has been
7 added in this version, including Google Analytics dashboards and roles management, and the update requires
8 agreeing to the <a href="http://www.sharethis.com/privacy/" target="_blank">privacy policy</a> and <a
9 href="http://www.sharethis.com/publisher-terms-of-use/" target="_blank">terms of use</a> to enable them.
10 <a href="<?php echo esc_url( $url ); ?>"><span class="button button-primary">I accept</span></a>
11 </p>
12 </div>
13 <script type="text/javascript">
14 jQuery(document).ready(function () {
15 jQuery('#googleanalytics_terms_notice .notice-dismiss').live('click', function (event) {
16 event.preventDefault();
17 jQuery.post(ajaxurl, {action: 'googleanalytics_hide_terms'});
18 });
19 });
20 </script>
21