ga_accounts_selector.php
9 years ago
ga_auth_button.php
9 years ago
ga_code.php
9 years ago
ga_dashboard_widget.php
9 years ago
ga_debug_modal.php
9 years ago
ga_googleanalytics_loader.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
trending.php
9 years ago
ga_notice.php
19 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 added in this version, including Google Analytics dashboards, Trending Content, and Alerts. The update requires agreeing to the <a href="http://www.sharethis.com/privacy/" target="_blank">privacy policy</a> and <a |
| 7 | href="http://www.sharethis.com/publisher-terms-of-use/" target="_blank">terms of use</a> to enable them. |
| 8 | <a href="<?php echo esc_url( $url ); ?>"><span class="button button-primary">I accept</span></a> |
| 9 | </p> |
| 10 | </div> |
| 11 | <script type="text/javascript"> |
| 12 | jQuery(document).ready(function () { |
| 13 | jQuery('#googleanalytics_terms_notice .notice-dismiss').live('click', function (event) { |
| 14 | event.preventDefault(); |
| 15 | jQuery.post(ajaxurl, {action: 'googleanalytics_hide_terms'}); |
| 16 | }); |
| 17 | }); |
| 18 | </script> |
| 19 |