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
14 lines
| 1 | <div id="googleanalytics_terms_notice" class="notice notice-warning <?php echo ( Ga_Helper::is_plugin_page() ) ? : 'is-dismissible' ?>"> |
| 2 | <p> |
| 3 | Google Analytics <?php echo esc_html( GOOGLEANALYTICS_VERSION ); ?> plugin <a href="http://www.sharethis.com/news/2016/12/sharethis-adds-analytics-plugin-to-suite-of-tools/" 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 and roles management, and the update requires agreeing to the <a href="http://www.sharethis.com/privacy/" target="_blank">privacy policy</a> and <a href="http://www.sharethis.com/publisher-terms-of-use/" target="_blank">terms of use</a> to enable them. <a href="<?php echo esc_url( $url ); ?>"><span class="button button-primary">I accept</span></a> |
| 4 | </p> |
| 5 | </div> |
| 6 | <script type="text/javascript"> |
| 7 | jQuery( document ).ready( function () { |
| 8 | jQuery( '#googleanalytics_terms_notice .notice-dismiss' ).live( 'click', function ( event ) { |
| 9 | event.preventDefault(); |
| 10 | jQuery.post( ajaxurl, { action: 'googleanalytics_hide_terms' } ); |
| 11 | } ); |
| 12 | } ); |
| 13 | </script> |
| 14 |