forked from wp-plugins/google-analyticator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
google-analyticator.php
executable file
·1416 lines (1206 loc) · 59.2 KB
/
google-analyticator.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/*
* Plugin Name: Google Analyticator
* Version: 6.4.9.6
* Plugin URI: http://www.videousermanuals.com/google-analyticator/?utm_campaign=analyticator&utm_medium=plugin&utm_source=readme-txt
* Description: Adds the necessary JavaScript code to enable <a href="http://www.google.com/analytics/">Google's Analytics</a>. After enabling this plugin you need to authenticate with Google, then select your domain and you're set.
* Author: SumoMe
* Author URI: http://www.sumome.com/?src=wp_readme
* Text Domain: google-analyticator
*/
//error_reporting(E_ALL);
//ini_set('display_errors', '1');
define('GOOGLE_ANALYTICATOR_VERSION', '6.4.9');
define('GOOGLE_ANALYTICATOR_CLIENTID', '1007949979410.apps.googleusercontent.com');
define('GOOGLE_ANALYTICATOR_CLIENTSECRET', 'q06U41XDXtzaXD14E-KO1hti'); //don't worry - this don't need to be secret in our case
define('GOOGLE_ANALYTICATOR_REDIRECT', 'urn:ietf:wg:oauth:2.0:oob');
define('GOOGLE_ANALYTICATOR_SCOPE', 'https://www.googleapis.com/auth/analytics');//.readonly
// Constants for enabled/disabled state
define("ga_enabled", "enabled");
define("ga_disabled", "disabled");
// Defaults, etc.
define("key_ga_uid", "ga_uid");
define("key_ga_status", "ga_status");
define("key_ga_disable_gasites", "ga_disable_gasites");
define("key_ga_analytic_snippet", "ga_analytic_snippet");
define("key_ga_admin", "ga_admin_status");
define("key_ga_admin_disable", "ga_admin_disable");
define("key_ga_admin_disable_DimentionIndex", "ga_admin_disable_DimentionIndex");
define("key_ga_remarketing", 'ga_enable_remarketing');
define("key_ga_track_login", "key_ga_track_login");
define("key_ga_show_ad", "key_ga_show_ad");
define("key_ga_admin_role", "ga_admin_role");
define("key_ga_dashboard_role", "ga_dashboard_role");
define("key_ga_adsense", "ga_adsense");
define("key_ga_extra", "ga_extra");
define("key_ga_extra_after", "ga_extra_after");
define("key_ga_event", "ga_event");
define("key_ga_outbound", "ga_outbound");
define("key_ga_outbound_prefix", "ga_outbound_prefix");
define("key_ga_enhanced_link_attr", "ga_enhanced_link_attr");
define("key_ga_downloads", "ga_downloads");
define("key_ga_downloads_prefix", "ga_downloads_prefix");
define("key_ga_widgets", "ga_widgets");
define("key_ga_annon", "ga_annon");
define("ga_uid_default", "UA-XXXXXXXX-X");
define("ga_google_token_default", "");
define("ga_disable_gasites_default", ga_disabled);
define("ga_analytic_snippet_default", ga_disabled);
define("ga_status_default", ga_disabled);
define("ga_admin_default", ga_enabled);
define("ga_admin_disable_DimentionIndex_default", "");
define("ga_admin_disable_default", 'remove');
define("ga_adsense_default", "");
define("ga_extra_default", "");
define("ga_extra_after_default", "");
define("ga_event_default", ga_enabled);
define("ga_outbound_default", ga_enabled);
define("ga_outbound_prefix_default", 'outgoing');
define("ga_enhanced_link_attr_default", ga_disabled);
define("ga_downloads_default", "");
define("ga_downloads_prefix_default", "download");
define("ga_widgets_default", ga_enabled);
// Create the default key and status
add_option( 'ga_version', GOOGLE_ANALYTICATOR_VERSION );
add_option(key_ga_status, ga_status_default, '');
add_option(key_ga_disable_gasites, ga_disable_gasites_default, '');
add_option(key_ga_analytic_snippet, ga_analytic_snippet_default, '');
add_option(key_ga_uid, ga_uid_default, '');
add_option(key_ga_admin, ga_admin_default, '');
add_option(key_ga_admin_disable_DimentionIndex, ga_admin_disable_DimentionIndex_default, '');
add_option(key_ga_admin_disable, ga_admin_disable_default, '');
add_option(key_ga_admin_role, array('administrator'), '');
add_option(key_ga_dashboard_role, array('administrator'), '');
add_option(key_ga_show_ad, '1' );
add_option(key_ga_adsense, ga_adsense_default, '');
add_option(key_ga_extra, ga_extra_default, '');
add_option(key_ga_extra_after, ga_extra_after_default, '');
add_option(key_ga_event, ga_event_default, '');
add_option(key_ga_outbound, ga_outbound_default, '');
add_option(key_ga_outbound_prefix, ga_outbound_prefix_default, '');
add_option(key_ga_enhanced_link_attr, ga_enhanced_link_attr_default, '');
add_option(key_ga_downloads, ga_downloads_default, '');
add_option(key_ga_downloads_prefix, ga_downloads_prefix_default, '');
add_option(key_ga_widgets, ga_widgets_default, '');
add_option(key_ga_annon, false );
add_option('ga_defaults', 'yes' );
add_option('ga_google_token', '', '');
$useAuth = ( get_option( 'ga_google_token' ) == '' ? false : true );
# Check if we have a version of WordPress greater than 2.8
if ( function_exists('register_widget') ) {
# Check if widgets are enabled and the auth has been set!
if ( get_option(key_ga_widgets) == 'enabled' && $useAuth ) {
# Include Google Analytics Stats widget
require_once('google-analytics-stats-widget.php');
# Include the Google Analytics Summary widget
require_once('google-analytics-summary-widget.php');
$google_analytics_summary = new GoogleAnalyticsSummary();
}
}
// Create a option page for settings
add_action('admin_init', 'ga_admin_init');
add_action('init', "ganalyticator_stats_init");
add_action('admin_menu', 'add_ga_option_page');
function ganalyticator_stats_init(){
require_once('class.analytics.stats.php');
do_action("gapro_init");
}
// Initialize the options
function ga_admin_init() {
ga_get_active_addons();
# Load the localization information
$plugin_dir = basename(dirname(__FILE__));
load_plugin_textdomain('google-analyticator', 'wp-content/plugins/' . $plugin_dir . '/localizations', $plugin_dir . '/localizations');
}
# Add the core Google Analytics script, with a high priority to ensure last script for async tracking
add_action('wp_head', 'add_google_analytics',99);
// ONly track WP login if requested.
if( get_option( key_ga_track_login ) )
add_action('login_head', 'add_google_analytics', 99);
# Initialize outbound link tracking
add_action('init', 'ga_outgoing_links');
// Include the Google Experiment page
// Hook in the options page function
function add_ga_option_page() {
if(ga_get_active_addons() == false){
//$plugin_page = add_options_page(__('Google Analyticator Settings', 'google-analyticator'), 'Google Analytics', 'manage_options', basename(__FILE__), 'ga_settings_page');
//add_action('load-'.$plugin_page, 'ga_pre_load' );
}
$activate_page = add_submenu_page( null, 'Activation', 'Google Analytics', 'manage_options', 'ga_activate' , 'ga_activate');
$reset_page = add_submenu_page(null, 'Reset', 'Reset', 'activate_plugins', 'ga_reset', 'ga_reset' );
add_action('load-'.$reset_page, 'ga_do_reset' );
}
add_action('plugin_action_links_' . plugin_basename(__FILE__), 'ga_filter_plugin_actions');
function ga_pre_load()
{
add_action('admin_footer', 'add_ga_admin_footer');
if( isset( $_POST['key_ga_google_token'] ) ):
check_admin_referer('google-analyticator-update_settings');
// Nolonger defaults
update_option('ga_defaults', 'no');
// Update GA Token
update_option('ga_google_token', $_POST['key_ga_google_token']);
endif;
if( get_option('ga_defaults') == 'yes' ):
wp_redirect( admin_url('options-general.php?page=ga_activate') );
exit;
endif;
/** Action to trancate Analyticator db cache **/
if(isset($_GET['pageaction']) && $_GET['pageaction'] == 'ga_clear_cache'){
global $wpdb;
delete_transient('google_stats_uniques' );
delete_transient('ga_admin_stats_widget');
$wpdb->query( "delete from $wpdb->options where `option_name` like 'google_stats_visitsGraph_%'");
$wpdb->query( "delete from $wpdb->options where `option_name` like '%ga_admin_dashboard%'");
}
}
function ga_activate()
{
if (! function_exists('curl_init')) {
print('Google PHP API Client requires the CURL PHP extension');
return;
}
if (! function_exists('json_decode')) {
print('Google PHP API Client requires the JSON PHP extension');
return;
}
if (! function_exists('http_build_query')) {
print('Google PHP API Client requires http_build_query()');
return;
}
$url = http_build_query( array(
'next' =>ga_analyticator_setting_url(),
'scope' => GOOGLE_ANALYTICATOR_SCOPE,
'response_type'=>'code',
'redirect_uri'=>GOOGLE_ANALYTICATOR_REDIRECT,
'client_id'=>GOOGLE_ANALYTICATOR_CLIENTID
)
);
?>
<div class="wrap">
<p><strong>Google Authentication Code </strong> </p>
<p>You need to sign in to Google and grant this plugin access to your Google Analytics account</p>
<p> <a
onclick="window.open('https://accounts.google.com/o/oauth2/auth?<?php echo $url ?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"
target="_blank"
href="javascript:void(0);"> Click Here </a> - <small> Or <a target="_blank" href="https://accounts.google.com/o/oauth2/auth?<?php echo $url ?>">here</a> if you have popups blocked</small> </p>
<div id="key">
<p>Enter your Google Authentication Code in this box. This code will be used to get an Authentication Token so you can access your website stats.</p>
<form method="post" action="<?php echo ga_analyticator_setting_url();?>">
<?php wp_nonce_field('google-analyticator-update_settings'); ?>
<input type="text" name="key_ga_google_token" value="" style="width:450px;"/>
<input type="submit" value="Save & Continue" />
</form>
</div>
<br />
<br />
<br />
<hr />
<br />
<p><strong>I Don't Want To Authenticate Through Google </strong> </p>
<p>If you don't want to authenticate through Google and only use the tracking capability of the plugin (<strong><u>not the dashboard functionality</u></strong>), you can do this by clicking the button below. </p>
<p>You will be asked on the next page to manually enter your Google Analytics UID.</p>
<form method="post" action="<?php echo ga_analyticator_setting_url();?>">
<input type="hidden" name="key_ga_google_token" value="" />
<?php wp_nonce_field('google-analyticator-update_settings'); ?>
<input type="submit" value="Continue Without Authentication" />
</form>
</div>
<?php
}
// Add settings option
function ga_filter_plugin_actions($links) {
$new_links = array();
$new_links[] = '<a href="' . ga_analyticator_setting_url() .'">' . __('Settings', 'google-analyticator') . '</a>';
$new_links[] = '<a href="' . wp_nonce_url( admin_url('options-general.php?page=ga_reset'), 'ga-reset' ) .'">'. __('Reset', 'google-analyticator') . '</a>';
return array_merge($new_links, $links);
}
function ga_do_reset()
{
global $wpdb;
// Check to make sure referer is same as host.
check_admin_referer( 'ga-reset' );
// Delete all GA options.
delete_option(key_ga_status);
delete_option(key_ga_disable_gasites);
delete_option(key_ga_analytic_snippet);
delete_option(key_ga_uid);
delete_option(key_ga_admin);
delete_option(key_ga_admin_disable);
delete_option(key_ga_admin_role);
delete_option(key_ga_dashboard_role);
delete_option(key_ga_adsense);
delete_option(key_ga_extra);
delete_option(key_ga_extra_after);
delete_option(key_ga_event);
delete_option(key_ga_outbound);
delete_option(key_ga_outbound_prefix);
delete_option(key_ga_enhanced_link_attr);
delete_option(key_ga_downloads);
delete_option(key_ga_downloads_prefix);
delete_option(key_ga_widgets);
delete_option(key_ga_annon);
delete_option('ga_defaults');
delete_option('ga_google_token');
delete_option('ga_google_authtoken');
delete_option('ga_profileid');
delete_transient('ga_admin_stats_widget');
// Need to remove cached items from GA widgets
$wpdb->query( "delete from $wpdb->options where `option_name` like 'google_stats_visitsGraph_%'");
wp_redirect( admin_url( 'options-general.php?page=ga_activate' ) );
exit;
}
function ga_reset(){ /* Wont ever run. */ }
function ga_settings_page(){
ga_options_page();
}
function ga_options_page() {
add_thickbox();
if (array_key_exists('ga_analyticator_global_notification', $_GET) && $_GET['ga_analyticator_global_notification'] == 0) {
update_option('ga_analyticator_global_notification', 0);
}
// If we are a postback, store the options
if (isset($_POST['info_update'])) {
# Verify nonce
check_admin_referer('google-analyticator-update_settings');
update_option('ga_defaults', 'no');
if(isset( $_POST['ga_domain_names'])){
// Get our domains array, and match the UID to the value
$domains = stripslashes( $_POST['ga_domain_names'] );
$all_domains = unserialize( $domains );
update_option( 'ga_domain_name', $all_domains[ $_POST[key_ga_uid] ] );
}
// Update the status
$ga_status = wp_filter_kses( $_POST[key_ga_status] );
if (($ga_status != ga_enabled) && ($ga_status != ga_disabled))
$ga_status = ga_status_default;
update_option(key_ga_status, $ga_status);
// Update Hiding UID (if set)
if( isset( $_POST[key_ga_disable_gasites] ) ) {
$ga_disable_gasites = wp_filter_kses( $_POST[key_ga_disable_gasites] );
if (!$ga_disable_gasites)
$ga_disable_gasites = ga_disable_gasites_default;
update_option(key_ga_disable_gasites, $ga_disable_gasites);
}
// Update the Analytic Snippet
//define("key_ga_analytic_snippet", "ga_analytic_snippet", true);
$ga_analytic_snippet = wp_filter_kses( $_POST[key_ga_analytic_snippet] );
if (($ga_analytic_snippet != ga_enabled) && ($ga_analytic_snippet != ga_disabled))
$ga_analytic_snippet = ga_analytic_snippet;
update_option(key_ga_analytic_snippet, $ga_analytic_snippet);
// Update the UID
$ga_uid = wp_filter_kses( $_POST[key_ga_uid] );
if ($ga_uid == '')
$ga_uid = ga_uid_default;
update_option(key_ga_uid, $ga_uid);
// Update the admin logging
$ga_admin = wp_filter_kses( $_POST[key_ga_admin] );
if (($ga_admin != ga_enabled) && ($ga_admin != ga_disabled))
$ga_admin = ga_admin_default;
update_option(key_ga_admin, wp_filter_kses( $ga_admin ) );
// Update the Dimension Index
$ga_admin_disable_DimentionIndex = $_POST[key_ga_admin_disable_DimentionIndex];
if ($ga_admin_disable_DimentionIndex == '')
$ga_admin_disable_DimentionIndex = ga_admin_disable_DimentionIndex_default;
update_option(key_ga_admin_disable_DimentionIndex, sanitize_text_field( $ga_admin_disable_DimentionIndex ) );
// Update the admin disable setting
$ga_admin_disable = wp_filter_kses( $_POST[key_ga_admin_disable] );
if ( $ga_admin_disable == '' )
$ga_admin_disable = ga_admin_disable_default;
update_option(key_ga_admin_disable, wp_filter_kses( $ga_admin_disable) );
// Update the admin level
if ( array_key_exists(key_ga_admin_role, $_POST) ) {
$ga_admin_role = $_POST[key_ga_admin_role];
} else {
$ga_admin_role = "";
}
update_option(key_ga_admin_role, $ga_admin_role);
// Update the dashboard level
if ( array_key_exists(key_ga_dashboard_role, $_POST) ) {
$ga_dashboard_role = $_POST[key_ga_dashboard_role];
} else {
$ga_dashboard_role = "";
}
update_option(key_ga_dashboard_role, $ga_dashboard_role );
// Update the extra tracking code
$ga_extra = $_POST[key_ga_extra];
update_option(key_ga_extra, wp_filter_kses( $ga_extra ) );
// Update the extra after tracking code
$ga_extra_after = $_POST[key_ga_extra_after];
update_option(key_ga_extra_after, wp_filter_kses( $ga_extra_after ));
// Update the adsense key
$ga_adsense = $_POST[key_ga_adsense];
update_option(key_ga_adsense, sanitize_text_field( $ga_adsense ) );
// Update the event tracking
$ga_event = $_POST[key_ga_event];
if (($ga_event != ga_enabled) && ($ga_event != ga_disabled))
$ga_event = ga_event_default;
update_option(key_ga_event, wp_filter_kses ( $ga_event ) );
// Update the outbound tracking
$ga_outbound = $_POST[key_ga_outbound];
if (($ga_outbound != ga_enabled) && ($ga_outbound != ga_disabled))
$ga_outbound = ga_outbound_default;
update_option(key_ga_outbound, wp_filter_kses( $ga_outbound ) );
// Update the outbound prefix
$ga_outbound_prefix = $_POST[key_ga_outbound_prefix];
if ($ga_outbound_prefix == '')
$ga_outbound_prefix = ga_outbound_prefix_default;
update_option(key_ga_outbound_prefix, sanitize_text_field( $ga_outbound_prefix) );
// Update the download tracking code
$ga_downloads = $_POST[key_ga_downloads];
update_option(key_ga_downloads, sanitize_text_field( $ga_downloads ) );
// Update the Enhanced Link Attribution
$ga_enhanced_link_attr = $_POST[key_ga_enhanced_link_attr];
if ($ga_enhanced_link_attr == '')
$ga_enhanced_link_attr = ga_enhanced_link_attr_default;
update_option(key_ga_enhanced_link_attr, wp_filter_kses( $ga_enhanced_link_attr) );
// Update the download prefix
$ga_downloads_prefix = $_POST[key_ga_downloads_prefix];
if ($ga_downloads_prefix == '')
$ga_downloads_prefix = ga_downloads_prefix_default;
update_option(key_ga_downloads_prefix, sanitize_text_field( $ga_downloads_prefix) );
// Update the widgets option
$ga_widgets = $_POST[key_ga_widgets];
if (($ga_widgets != ga_enabled) && ($ga_widgets != ga_disabled))
$ga_widgets = ga_widgets_default;
update_option(key_ga_widgets, wp_filter_kses( $ga_widgets ) );
// Update the widgets option
update_option(key_ga_annon, wp_filter_kses( $_POST[key_ga_annon] ) );
// Update enable remarketing
update_option(key_ga_remarketing, wp_filter_kses( $_POST[key_ga_remarketing] ) );
// Update key_ga_hide_ad
update_option(key_ga_show_ad, wp_filter_kses( $_POST[key_ga_show_ad] ) );
// Update enable tracking login
update_option(key_ga_track_login, wp_filter_kses( $_POST[key_ga_track_login] ) );
do_action("ga_experiment_setting_save");
// Give an updated message
echo "<div class='updated fade'><p><strong>" . __('Google Analyticator settings saved.', 'google-analyticator') . "</strong></p></div>";
}
// Are we using the auth system?
$useAuth = ( get_option( 'ga_google_token' ) == '' ? false : true );
// Output the options page
?>
<div class="wrap">
<?php if (get_option('ga_analyticator_global_notification') == 1): ?>
<style type="text/css">
#ga_analyticator_global_notification a.button:active {vertical-align:baseline;}
</style>
<div id="ga_analyticator_global_notification" class="updated" style="border:3px solid #317A96;position:relative;background:##3c9cc2;background-color:#3c9cc2;color:#ffffff;height:70px;">
<a class="notice-dismiss" href="<?php echo admin_url('admin.php?page=google-analyticator&ga_analyticator_global_notification=0'); ?>" style="right:10px;top:0;"></a>
<p style="font-size:16px;line-height:50px;">
<?php _e('Grow your site faster!'); ?> <a style="background-color: #6267BE;border-color: #3C3F76;" href="<?php echo admin_url('plugin-install.php?tab=plugin-information&plugin=sumome&TB_iframe=true&width=743&height=500'); ?>" class="thickbox button button-primary">Get SumoMe WordPress Plugin</a>
</p>
</div>
<?php endif ?>
<form method="post" action="<?php echo ga_analyticator_setting_url();?>">
<?php
# Add a nonce
wp_nonce_field('google-analyticator-update_settings');
?>
<?php if (get_option(key_ga_status) == ga_disabled) { ?>
<div style="margin:10px auto; border:3px #f00 solid; background-color:#fdd; color:#000; padding:10px; text-align:center;">
<?php _e('Google Analytics integration is currently <strong>DISABLED</strong>.', 'google-analyticator'); ?>
</div>
<?php } ?>
<?php if ((get_option(key_ga_uid) == "XX-XXXXX-X") && (get_option(key_ga_status) != ga_disabled)) { ?>
<div style="margin:10px auto; border:3px #f00 solid; background-color:#fdd; color:#000; padding:10px; text-align:center;">
<?php _e('Google Analytics integration is currently enabled, but you did not enter a UID. Tracking will not occur.', 'google-analyticator'); ?>
</div>
<?php } ?>
<div id="vumga-container" style="position:relative;">
<?php
$addons = get_option("gapro_addons");
if(!$addons){?>
<div id="vumga-sidebar" style="position: absolute; top: 40px; right: 0; width: 250px; border: 1px solid #ccc; padding: 20px; background:#FFFFFF">
<h3 style="text-align:center">Support us</h3>
<p>1- Check out our <a target="_blank" href="https://wordpress.org/plugins/sumome">SumoMe plugin</a></p>
<p>2- <a target="_blank" href="https://wordpress.org/support/view/plugin-reviews/google-analyticator">Leave a :) Review</a></p>
<p>3- Have a great day!</p>
<h3 style="text-align:center">Show off your analytics</h3>
<p>Use short code <b>[analytics]</b> anywhere on your site to show your analytics publicly.</p>
<p>Use short code <b>[analytics-counter]</b> anywhere on your site to display the page view counter widget.</p>
</div>
<?php }?>
<div style="margin-right: 320px;">
<table class="form-table" cellspacing="2" cellpadding="5" width="100%">
<tr>
<td colspan="2" style="padding-left:0"><h3>
<?php _e('Basic Settings', 'google-analyticator'); ?>
</h3></td>
</tr>
<tr>
<th width="35%" valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_status ?>">
<?php _e('Google Analytics logging is', 'google-analyticator'); ?>:</label>
</th>
<td>
<?php
echo "<select name='".key_ga_status."' id='".key_ga_status."'>\n";
echo "<option value='".ga_enabled."'";
if(get_option(key_ga_status) == ga_enabled)
echo " selected='selected'";
echo ">" . __('Enabled', 'google-analyticator') . "</option>\n";
echo "<option value='".ga_disabled."'";
if(get_option(key_ga_status) == ga_disabled)
echo" selected='selected'";
echo ">" . __('Disabled', 'google-analyticator') . "</option>\n";
echo "</select>\n";
?>
</td>
</tr>
<tr id="ga_ajax_accounts">
<th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_uid; ?>"><?php _e('Analytics Account', 'google-analyticator'); ?>:</label>
</th>
<td>
<?php if (get_option(key_ga_disable_gasites) == ga_disabled){?>
<?php
if( $useAuth ):
$uids = ga_get_analytics_accounts();
echo "<select name='".key_ga_uid."'> ";
$hasSelected = false; // Will be set to true once a match is found. Cant echo selected twice.
foreach($uids as $id=>$domain):
echo '<option value="'.$id.'"';
// If set in DB.
if( get_option(key_ga_uid) == $id ) { $hasSelected=true; echo ' selected="selected"'; }
// Else if the domain matches the current domain & nothing set in DB.
elseif( ( $_SERVER['HTTP_HOST'] == $domain ) && ( ! $hasSelected ) ) { $hasSelected=true; echo ' selected="selected"'; }
echo '>'.$domain.'</option>';
endforeach;
echo '</select>';
// Need a copy of the array, so we can store the domain name too (for visual purposes)
echo '<input type="hidden" name="ga_domain_names" value=\'' . serialize( $uids ) . '\' />';
else:
echo '<input type="text" name="'.key_ga_uid.'" value="'. get_option( key_ga_uid ) .'" />';
endif;
?><br />
<input type="checkbox" name="<?php echo key_ga_disable_gasites?>" id="<?php echo key_ga_disable_gasites?>"<?php if(get_option(key_ga_disable_gasites) == ga_enabled){?> checked="checked"<?php }?> /> <?php _e('Hide Google Analytics UID after saving', 'google-analyticator'); ?>
<?php }else{
?><?php echo get_option( 'ga_domain_name' ); ?> - To change this, you must <a href="<?php echo admin_url('/options-general.php?page=ga_reset'); ?>">deauthorize and reset the plugin</a>
<input type="hidden" name="<?php echo key_ga_disable_gasites?>" value="<?php echo ga_enabled?>" /><input type="hidden" name="<?php echo key_ga_uid?>" value="<?php echo get_option(key_ga_uid)?>" />
<?php
}?>
</td>
</tr>
<tr>
<th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_analytic_snippet ?>">
<?php _e('Tracking Code', 'google-analyticator'); ?>:</label>
</th>
<td><?php
echo "<select name='".key_ga_analytic_snippet."' id='".key_ga_analytic_snippet."'>\n";
echo "<option value='".ga_disabled."'";
if(get_option(key_ga_analytic_snippet) == ga_disabled)
echo" selected='selected'";
echo ">" . __('Universal (analytics.js)', 'google-analyticator') . "</option>\n";
echo "<option value='".ga_enabled."'";
if(get_option(key_ga_analytic_snippet) == ga_enabled)
echo " selected='selected'";
echo ">" . __('Traditional (ga.js)', 'google-analyticator') . "</option>\n";
echo "</select>\n";
?>
<p class="setting-description">
<?php _e('If you are using Universal Analytics make sure you have changed your account to a Universal Analytics property in Google Analytics. Read more about Universal Analytics <a href="https://support.google.com/analytics/answer/2817075?hl=en" target="_blank">here</a>.', 'google-analyticator'); ?>
</p>
</td>
</tr>
<tr>
<th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_widgets; ?>">
<?php _e('Support us', 'google-analyticator'); ?>:</label>
</th>
<td><?php
echo "<select name='".key_ga_show_ad."' id='".key_ga_show_ad."'>\n";
echo "<option value='1'";
if(get_option(key_ga_show_ad) == '1')
echo " selected='selected'";
echo ">" . __('Yes', 'google-analyticator') . "</option>\n";
echo "<option value='0' ";
if(get_option(key_ga_show_ad) == '0')
echo" selected='selected'";
echo ">" . __('No', 'google-analyticator') . "</option>\n";
echo "</select>\n";
?>
<p class="setting-description">
<?php _e('Show our link on the admin dashboard. Pretty please.', 'google-analyticator'); ?>
</p></td>
</tr>
<tr>
<td><b>View your Dashboard</b></td>
<td><a href="../wp-admin/index.php">Click here</a></td>
</tr>
<tr>
<td><input type="submit" class="button button-primary" name="info_update" value="<?php _e('Save Changes', 'google-analyticator'); ?>" /></td>
</tr>
<tr>
<td colspan="2" style="padding-left:0"><h3>
<?php _e('Tracking Settings', 'google-analyticator'); ?>
</h3></td>
</tr>
<tr>
<th valign="top" style="padding-top: 10px;"> <label>
<?php _e('Anonymize IP Addresses', 'google-analyticator'); ?>:</label>
</th>
<td><?php
echo "<select name='".key_ga_annon."' id='".key_ga_annon."'>\n";
echo "<option value='0'";
if(get_option(key_ga_annon) == false )
echo " selected='selected'";
echo ">" . __('No', 'google-analyticator') . "</option>\n";
echo "<option value='1'";
if(get_option(key_ga_annon) == true)
echo" selected='selected'";
echo ">" . __('Yes', 'google-analyticator') . "</option>\n";
echo "</select>\n";
?>
<p class="setting-description">
<?php _e('By selecting "Yes", This tells Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage. Note that this will slightly reduce the accuracy of geographic reporting.', 'google-analyticator'); ?>
</p></td>
</tr>
<tr>
<th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_admin ?>">
<?php _e('Track all logged in WordPress users', 'google-analyticator'); ?>:</label>
</th>
<td><?php
echo "<select name='".key_ga_admin."' id='".key_ga_admin."'>\n";
echo "<option value='".ga_enabled."'";
if(get_option(key_ga_admin) == ga_enabled)
echo " selected='selected'";
echo ">" . __('Yes', 'google-analyticator') . "</option>\n";
echo "<option value='".ga_disabled."'";
if(get_option(key_ga_admin) == ga_disabled)
echo" selected='selected'";
echo ">" . __('No', 'google-analyticator') . "</option>\n";
echo "</select>\n";
?>
<p class="setting-description">
<?php _e('Selecting "no" to this option will prevent logged in WordPress users from showing up on your Google Analytics reports. This setting will prevent yourself or other users from showing up in your Analytics reports. Use the next setting to determine what user groups to exclude.', 'google-analyticator'); ?>
</p></td>
</tr>
<tr>
<th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_admin_role ?>">
<?php _e('User roles to not track', 'google-analyticator'); ?>:</label>
</th>
<td><?php
global $wp_roles;
$roles = $wp_roles->get_names();
$selected_roles = get_option(key_ga_admin_role);
if ( !is_array($selected_roles) ) $selected_roles = array();
# Loop through the roles
foreach ( $roles AS $role => $name ) {
echo '<input type="checkbox" value="' . $role . '" name="' . key_ga_admin_role . '[]"';
if ( in_array($role, $selected_roles) )
echo " checked='checked'";
$name_pos = strpos($name, '|');
$name = ( $name_pos ) ? substr($name, 0, $name_pos) : $name;
echo ' /> ' . _x($name, 'User role') . '<br />';
}
?>
<p class="setting-description">
<?php _e('Specifies the user roles to not include in your WordPress Analytics report. If a user is logged into WordPress with one of these roles, they will not show up in your Analytics report.', 'google-analyticator'); ?>
</p></td>
</tr>
<tr>
<th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_admin_disable ?>">
<?php _e('Method to prevent tracking', 'google-analyticator'); ?>:</label>
</th>
<td><?php
echo "<select name='".key_ga_admin_disable."' id='".key_ga_admin_disable."'>\n";
echo "<option value='remove'";
if(get_option(key_ga_admin_disable) == 'remove')
echo " selected='selected'";
echo ">" . __('Remove', 'google-analyticator') . "</option>\n";
echo "<option value='admin'";
if(get_option(key_ga_admin_disable) == 'admin')
echo" selected='selected'";
echo ">" . __('Use \'admin\' variable', 'google-analyticator') . "</option>\n";
echo "</select>\n";
?>
<span class="ga_admin_disable_DimentionIndex_span"> <?php _e('Dimension Index', 'google-analyticator'); ?>:
<input type="text" name="<?php echo key_ga_admin_disable_DimentionIndex?>" style="width:50px;" value="<?php echo get_option(key_ga_admin_disable_DimentionIndex)?>" class="<?php echo key_ga_admin_disable_DimentionIndex?>" id="<?php echo key_ga_admin_disable_DimentionIndex?>" />
</span>
<p class="setting-description">
<?php _e('Selecting the "Remove" option will physically remove the tracking code from logged in users. Selecting the "Use \'admin\' variable" option will assign a variable called \'admin\' to logged in users. This option will allow Google Analytics\' site overlay feature to work, but you will have to manually configure Google Analytics to exclude tracking from pageviews with the \'admin\' variable.', 'google-analyticator'); ?>
</p></td>
</tr>
<tr>
<th valign="top" style="padding-top: 10px;"> <label>
<?php _e('Enable Remarketing, Demographics and Interests reports', 'google-analyticator'); ?>:</label>
</th>
<td><?php
echo "<select name='".key_ga_remarketing."' id='".key_ga_remarketing."'>\n";
echo "<option value='0'";
if(get_option(key_ga_remarketing) == '0' )
echo" selected='selected'";
echo ">" . __('No', 'google-analyticator') . "</option>\n";
echo "<option value='1'";
if(get_option(key_ga_remarketing) == '1' )
echo " selected='selected'";
echo ">" . __('Yes', 'google-analyticator') . "</option>\n";
echo "</select>\n";
?>
<p class="setting-description">
<?php _e( 'In order to use remarketing, <a href="https://support.google.com/analytics/answer/2611270" target="_blank">please make sure you complete this checklist from Google</a>', 'google-analyticator'); ?>
</p>
<p class="setting-description">
<?php _e( 'To use remarketing, <a href="https://support.google.com/analytics/answer/2884495" target="_blank">Edit permission</a> is required', 'google-analyticator'); ?>
</p></td>
</tr>
<tr>
<th valign="top" style="padding-top: 10px;"> <label><?php _e('Track WordPress Login Page', 'google-analyticator'); ?>:</label>
</th>
<td><?php
echo "<select name='".key_ga_track_login."' id='".key_ga_track_login."'>\n";
echo "<option value='1'";
if(get_option(key_ga_track_login) == '1' )
echo " selected='selected'";
echo ">" . __('Yes', 'google-analyticator') . "</option>\n";
echo "<option value='0'";
if(get_option(key_ga_track_login) == '0' )
echo" selected='selected'";
echo ">" . __('No', 'google-analyticator') . "</option>\n";
echo "</select>\n";
?>
<p class="setting-description">
<?php _e( 'This will track all access to wp-login.php', 'google-analyticator'); ?>
</p></td>
</tr>
<tr>
<td colspan="2" style="padding-left:0"><h3><?php _e('Link Tracking Settings', 'google-analyticator'); ?></h3></td>
</tr>
<tr>
<th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_outbound ?>">
<?php _e('Outbound link tracking', 'google-analyticator'); ?>:</label>
</th>
<td><?php
echo "<select name='".key_ga_outbound."' id='".key_ga_outbound."'>\n";
echo "<option value='".ga_enabled."'";
if(get_option(key_ga_outbound) == ga_enabled)
echo " selected='selected'";
echo ">" . __('Enabled', 'google-analyticator') . "</option>\n";
echo "<option value='".ga_disabled."'";
if(get_option(key_ga_outbound) == ga_disabled)
echo" selected='selected'";
echo ">" . __('Disabled', 'google-analyticator') . "</option>\n";
echo "</select>\n";
?>
<p class="setting-description">
<?php _e('Disabling this option will turn off the tracking of outbound links. It\'s recommended not to disable this option unless you\'re a privacy advocate (now why would you be using Google Analytics in the first place?) or it\'s causing some kind of weird issue.', 'google-analyticator'); ?>
</p></td>
</tr>
<tr>
<th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_event ?>">
<?php _e('Event tracking', 'google-analyticator'); ?>:</label>
</th>
<td><?php
echo "<select name='".key_ga_event."' id='".key_ga_event."'>\n";
echo "<option value='".ga_enabled."'";
if(get_option(key_ga_event) == ga_enabled)
echo " selected='selected'";
echo ">" . __('Enabled', 'google-analyticator') . "</option>\n";
echo "<option value='".ga_disabled."'";
if(get_option(key_ga_event) == ga_disabled)
echo" selected='selected'";
echo ">" . __('Disabled', 'google-analyticator') . "</option>\n";
echo "</select>\n";
?>
<p class="setting-description">
<?php _e('Enabling this option will treat outbound links and downloads as events instead of pageviews. Since the introduction of <a href="https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide">event tracking in Analytics</a>, this is the recommended way to track these types of actions. Only disable this option if you must use the old pageview tracking method.', 'google-analyticator'); ?>
</p></td>
</tr>
<tr>
<th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_enhanced_link_attr ?>">
<?php _e('Enhanced Link Attribution', 'google-analyticator'); ?>:</label>
</th>
<td><?php
echo "<select name='".key_ga_enhanced_link_attr."' id='".key_ga_enhanced_link_attr."'>\n";
echo "<option value='".ga_enabled."'";
if(get_option(key_ga_enhanced_link_attr) == ga_enabled)
echo " selected='selected'";
echo ">" . __('Enabled', 'google-analyticator') . "</option>\n";
echo "<option value='".ga_disabled."'";
if(get_option(key_ga_enhanced_link_attr) == ga_disabled )
echo " selected='selected'";
echo ">" . __('Disabled', 'google-analyticator') . "</option>\n";
echo "</select>\n";
?>
<p class="setting-description">
<?php _e('You can tag your pages to implement an enhanced link-tracking functionality by enabling this option. <a href="https://support.google.com/analytics/answer/2558867?hl=en" target="_blank">learn more</a>', 'google-analyticator'); ?>
</p></td>
</tr>
<tr>
<th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_downloads; ?>"><?php _e('Download extensions to track', 'google-analyticator'); ?>:</label>
</th>
<td><?php
echo "<input type='text' size='50' ";
echo "name='".key_ga_downloads."' ";
echo "id='".key_ga_downloads."' ";
echo "value='".wp_filter_kses(get_option(key_ga_downloads))."' />\n";
?>
<p class="setting-description">
<?php _e('Enter any extensions of files you would like to be tracked as a download. For example to track all MP3s and PDFs enter <strong>mp3,pdf</strong>. <em>Outbound link tracking must be enabled for downloads to be tracked.</em>', 'google-analyticator'); ?>
</p></td>
</tr>
<tr>
<th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_outbound_prefix; ?>">
<?php _e('Prefix external links with', 'google-analyticator'); ?>:</label>
</th>
<td><?php
echo "<input type='text' size='50' ";
echo "name='".key_ga_outbound_prefix."' ";
echo "id='".key_ga_outbound_prefix."' ";
echo "value='". stripslashes( wp_filter_kses(get_option(key_ga_outbound_prefix)))."' />\n";
?>
<p class="setting-description">
<?php _e('Enter a name for the section tracked external links will appear under. This option has no effect if event tracking is enabled.', 'google-analyticator'); ?>
</em></p></td>
</tr>
<tr>
<th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_downloads_prefix; ?>">
<?php _e('Prefix download links with', 'google-analyticator'); ?>:</label>
</th>
<td><?php
echo "<input type='text' size='50' ";
echo "name='".key_ga_downloads_prefix."' ";
echo "id='".key_ga_downloads_prefix."' ";
echo "value='".stripslashes(wp_filter_kses ( get_option(key_ga_downloads_prefix) ))."' />\n";
?>
<p class="setting-description">
<?php _e('Enter a name for the section tracked download links will appear under. This option has no effect if event tracking is enabled.', 'google-analyticator'); ?>
</em></p></td>
</tr>
<tr>
<th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_adsense; ?>">
<?php _e('Google Adsense ID', 'google-analyticator'); ?>:</label>
</th>
<td><?php
echo "<input type='text' size='50' ";
echo "name='".key_ga_adsense."' ";
echo "id='".key_ga_adsense."' ";
echo "value='".get_option(key_ga_adsense)."' />\n";
?>
<p class="setting-description">
<?php _e('Enter your Google Adsense ID assigned by Google Analytics in this box. This enables Analytics tracking of Adsense information if your Adsense and Analytics accounts are linked.', 'google-analyticator'); ?>
</p></td>
</tr>
<tr>
<td colspan="2" style="padding-left:0"><h3><?php _e('Additional Tracking Code', 'google-analyticator'); ?></h3></td>
</tr>
<tr>
<th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_extra; ?>">
<?php _e('Additional tracking code', 'google-analyticator'); ?>
<br />(<?php _e('before tracker initialization', 'google-analyticator'); ?>):</label>
</th>
<td><?php
echo "<textarea cols='50' rows='8' ";
echo "name='".key_ga_extra."' ";
echo "id='".key_ga_extra."'>";
echo stripslashes(get_option(key_ga_extra))."</textarea>\n";
?>
<p class="setting-description">
<?php _e('Enter any additional lines of tracking code that you would like to include in the Google Analytics tracking script. The code in this section will be displayed <strong>before</strong> the Google Analytics tracker is initialized.', 'google-analyticator'); ?>
</p></td>
</tr>
<tr>
<th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_extra_after; ?>">
<?php _e('Additional tracking code', 'google-analyticator'); ?>
<br />
(<?php _e('after tracker initialization', 'google-analyticator'); ?>):</label>
</th>
<td><?php
echo "<textarea cols='50' rows='8' ";
echo "name='".key_ga_extra_after."' ";
echo "id='".key_ga_extra_after."'>";
echo stripslashes(get_option(key_ga_extra_after))."</textarea>\n";
?>
<p class="setting-description">
<?php _e('Enter any additional lines of tracking code that you would like to include in the Google Analytics tracking script. The code in this section will be displayed <strong>after</strong> the Google Analytics tracker is initialized.', 'google-analyticator'); ?>
</p></td>
</tr>
<tr>
<td colspan="2" style="padding-left:0"><h3><?php _e('Admin Dashboard Widgets', 'google-analyticator'); ?></h3>
<?php if(!$useAuth): ?>
<div style="margin:10px auto; border:3px #f00 solid; background-color:#fdd; color:#000; padding:10px; text-align:center;">
<?php _e('You have not authenticated with Google - you cannot use dashboard widgets! Reset the plugin to authenticate..', 'google-analyticator'); ?>
</div>
<?php endif;?></td>
</tr>
<tr<?php if(!$useAuth){echo ' style="display:none"';}?>>
<th valign="top" style="padding-top: 10px;"><label for="<?php echo key_ga_widgets; ?>">
<?php _e('Include widgets', 'google-analyticator'); ?>:</label></th>
<td><?php
echo "<select name='".key_ga_widgets."' id='".key_ga_widgets."'>\n";
echo "<option value='".ga_enabled."'";
if(get_option(key_ga_widgets) == ga_enabled)
echo " selected='selected'";
echo ">" . __('Enabled', 'google-analyticator') . "</option>\n";
echo "<option value='".ga_disabled."'";
if(get_option(key_ga_widgets) == ga_disabled)
echo" selected='selected'";
echo ">" . __('Disabled', 'google-analyticator') . "</option>\n";
echo "</select>\n";
?>
<p class="setting-description">
<?php _e('Disabling this option will completely remove the Dashboard Summary widget and the theme Stats widget. Use this option if you would prefer to not see the widgets.', 'google-analyticator'); ?>
</p></td>
</tr>
<tr<?php if(!$useAuth){echo ' style="display:none"';}?>>
<th valign="top" style="padding-top: 10px;"> <label for="<?php echo key_ga_dashboard_role ?>">
<?php _e('User roles that can see the dashboard widget', 'google-analyticator'); ?>:</label>
</th>
<td><?php
global $wp_roles;