/**
  * Ajax handler for Items (posts/pages)
  *
  * @return json|int
  */
 function ajax_item_reports()
 {
     global $GADASH_Config;
     if (!isset($_REQUEST['gadwp_security_item_reports']) or !wp_verify_nonce($_REQUEST['gadwp_security_item_reports'], 'gadwp_get_itemreports')) {
         wp_die(-30);
     }
     $from = $_REQUEST['from'];
     $to = $_REQUEST['to'];
     $query = $_REQUEST['query'];
     $filter_id = $_REQUEST['filter'];
     if (ob_get_length()) {
         ob_clean();
     }
     $tools = new GADASH_Tools();
     if (!$tools->check_roles($GADASH_Config->options['ga_dash_access_back']) or 0 == $GADASH_Config->options['item_reports']) {
         wp_die(-31);
     }
     if ($GADASH_Config->options['ga_dash_token'] and $GADASH_Config->options['ga_dash_tableid_jail'] and $from and $to) {
         include_once $GADASH_Config->plugin_path . '/tools/gapi.php';
         global $GADASH_GAPI;
     } else {
         wp_die(-24);
     }
     $projectId = $GADASH_Config->options['ga_dash_tableid_jail'];
     $profile_info = $tools->get_selected_profile($GADASH_Config->options['ga_dash_profile_list'], $projectId);
     if (isset($profile_info[4])) {
         $GADASH_GAPI->timeshift = $profile_info[4];
     } else {
         $GADASH_GAPI->timeshift = (int) current_time('timestamp') - time();
     }
     // strip the protocol & domain
     $uri = str_replace($tools->strip_protocol($profile_info[3]), '', $tools->strip_protocol(get_permalink($filter_id)));
     // make sure the path starts with '/'
     if ($uri) {
         $uri = '/' . ltrim($uri, '/');
     }
     // allow URI correction before sending an API request
     $filter = apply_filters('gadwp_backenditem_uri', $uri);
     $GADASH_GAPI->get($projectId, $query, $from, $to, $filter);
 }
Ejemplo n.º 2
0
        function dashboard_widget()
        {
            global $GADASH_Config;
            if (empty($GADASH_Config->options['ga_dash_token'])) {
                echo '<p>' . __("This plugin needs an authorization:", 'ga-dash') . '</p><form action="' . menu_page_url('gadash_settings', false) . '" method="POST">' . get_submit_button(__("Authorize Plugin", 'ga-dash'), 'secondary') . '</form>';
                return;
            }
            $tools = new GADASH_Tools();
            if (current_user_can('manage_options')) {
                if (isset($_REQUEST['ga_dash_profile_select'])) {
                    $GADASH_Config->options['ga_dash_tableid'] = $_REQUEST['ga_dash_profile_select'];
                }
                $profiles = $GADASH_Config->options['ga_dash_profile_list'];
                $profile_switch = '';
                if (is_array($profiles)) {
                    if (!$GADASH_Config->options['ga_dash_tableid']) {
                        if ($GADASH_Config->options['ga_dash_tableid_jail']) {
                            $GADASH_Config->options['ga_dash_tableid'] = $GADASH_Config->options['ga_dash_tableid_jail'];
                        } else {
                            $GADASH_Config->options['ga_dash_tableid'] = $tools->guess_default_domain($profiles);
                        }
                    } else {
                        if ($GADASH_Config->options['switch_profile'] == 0 and $GADASH_Config->options['ga_dash_tableid_jail']) {
                            $GADASH_Config->options['ga_dash_tableid'] = $GADASH_Config->options['ga_dash_tableid_jail'];
                        }
                    }
                    $profile_switch .= '<select id="ga_dash_profile_select" name="ga_dash_profile_select" onchange="this.form.submit()">';
                    foreach ($profiles as $profile) {
                        if (!$GADASH_Config->options['ga_dash_tableid']) {
                            $GADASH_Config->options['ga_dash_tableid'] = $profile[1];
                        }
                        if (isset($profile[3])) {
                            $profile_switch .= '<option value="' . esc_attr($profile[1]) . '" ';
                            $profile_switch .= selected($profile[1], $GADASH_Config->options['ga_dash_tableid'], false);
                            $profile_switch .= ' title="' . __("View Name:", 'ga-dash') . ' ' . esc_attr($profile[0]) . '">' . esc_attr($tools->strip_protocol($profile[3])) . '</option>';
                        }
                    }
                    $profile_switch .= "</select>";
                } else {
                    echo '<p>' . __("Something went wrong while retrieving profiles list.", 'ga-dash') . '</p><form action="' . menu_page_url('gadash_settings', false) . '" method="POST">' . get_submit_button(__("More details", 'ga-dash'), 'secondary') . '</form>';
                    return;
                }
            }
            $GADASH_Config->set_plugin_options();
            ?>
<form id="ga-dash" method="POST">
						<?php 
            if (current_user_can('manage_options')) {
                if ($GADASH_Config->options['switch_profile'] == 0) {
                    if ($GADASH_Config->options['ga_dash_tableid_jail']) {
                        $projectId = $GADASH_Config->options['ga_dash_tableid_jail'];
                    } else {
                        echo '<p>' . __("An admin should asign a default Google Analytics Profile.", 'ga-dash') . '</p><form action="' . menu_page_url('gadash_settings', false) . '" method="POST">' . get_submit_button(__("Select Domain", 'ga-dash'), 'secondary') . '</form>';
                        return;
                    }
                } else {
                    echo $profile_switch;
                    $projectId = $GADASH_Config->options['ga_dash_tableid'];
                }
            } else {
                if ($GADASH_Config->options['ga_dash_tableid_jail']) {
                    $projectId = $GADASH_Config->options['ga_dash_tableid_jail'];
                } else {
                    echo '<p>' . __("An admin should asign a default Google Analytics Profile.", 'ga-dash') . '</p><form action="' . menu_page_url('gadash_settings', false) . '" method="POST">' . get_submit_button(__("Select Domain", 'ga-dash'), 'secondary') . '</form>';
                    return;
                }
            }
            if (!$projectId) {
                echo '<p>' . __("Something went wrong while retrieving property data. You need to create and properly configure a Google Analytics account:", 'ga-dash') . '</p> <form action="https://deconf.com/how-to-set-up-google-analytics-on-your-website/" method="POST">' . get_submit_button(__("Find out more!", 'ga-dash'), 'secondary') . '</form>';
                return;
            }
            if (isset($_REQUEST['query'])) {
                $query = $_REQUEST['query'];
                $GADASH_Config->options['ga_dash_default_metric'] = $query;
                $GADASH_Config->set_plugin_options();
            } else {
                $query = isset($GADASH_Config->options['ga_dash_default_metric']) ? $GADASH_Config->options['ga_dash_default_metric'] : 'sessions';
            }
            if (isset($_REQUEST['period'])) {
                $period = $_REQUEST['period'];
                $GADASH_Config->options['ga_dash_default_dimension'] = $period;
                $GADASH_Config->set_plugin_options();
            } else {
                $period = isset($GADASH_Config->options['ga_dash_default_dimension']) ? $GADASH_Config->options['ga_dash_default_dimension'] : '30daysAgo';
            }
            ?>

	<select id="ga_dash_period" name="period" onchange="this.form.submit()">
		<option value="realtime"
			<?php 
            selected("realtime", $period, true);
            ?>
><?php 
            _e("Real-Time", 'ga-dash');
            ?>
</option>
		<option value="today" <?php 
            selected("today", $period, true);
            ?>
><?php 
            _e("Today", 'ga-dash');
            ?>
</option>
		<option value="yesterday"
			<?php 
            selected("yesterday", $period, true);
            ?>
><?php 
            _e("Yesterday", 'ga-dash');
            ?>
</option>
		<option value="7daysAgo"
			<?php 
            selected("7daysAgo", $period, true);
            ?>
><?php 
            _e("Last 7 Days", 'ga-dash');
            ?>
</option>
		<option value="14daysAgo"
			<?php 
            selected("14daysAgo", $period, true);
            ?>
><?php 
            _e("Last 14 Days", 'ga-dash');
            ?>
</option>
		<option value="30daysAgo"
			<?php 
            selected("30daysAgo", $period, true);
            ?>
><?php 
            _e("Last 30 Days", 'ga-dash');
            ?>
</option>
		<option value="90daysAgo"
			<?php 
            selected("90daysAgo", $period, true);
            ?>
><?php 
            _e("Last 90 Days", 'ga-dash');
            ?>
</option>
	</select>
				<?php 
            if ($period != 'realtime') {
                ?>
				<select id="ga_dash_query" name="query"
		onchange="this.form.submit()">
		<option value="sessions"
			<?php 
                selected("sessions", $query, true);
                ?>
><?php 
                _e("Sessions", 'ga-dash');
                ?>
</option>
		<option value="users" <?php 
                selected("users", $query, true);
                ?>
><?php 
                _e("Users", 'ga-dash');
                ?>
</option>
		<option value="organicSearches"
			<?php 
                selected("organicSearches", $query, true);
                ?>
><?php 
                _e("Organic", 'ga-dash');
                ?>
</option>
		<option value="pageviews"
			<?php 
                selected("pageviews", $query, true);
                ?>
><?php 
                _e("Page Views", 'ga-dash');
                ?>
</option>
		<option value="visitBounceRate"
			<?php 
                selected("visitBounceRate", $query, true);
                ?>
><?php 
                _e("Bounce Rate", 'ga-dash');
                ?>
</option>
		<option value="locations"
			<?php 
                selected("locations", $query, true);
                ?>
><?php 
                _e("Location", 'ga-dash');
                ?>
</option>
		<option value="contentpages"
			<?php 
                selected("contentpages", $query, true);
                ?>
><?php 
                _e("Pages", 'ga-dash');
                ?>
</option>
		<option value="referrers"
			<?php 
                selected("referrers", $query, true);
                ?>
><?php 
                _e("Referrers", 'ga-dash');
                ?>
</option>
		<option value="searches"
			<?php 
                selected("searches", $query, true);
                ?>
><?php 
                _e("Searches", 'ga-dash');
                ?>
</option>
		<option value="trafficdetails"
			<?php 
                selected("trafficdetails", $query, true);
                ?>
><?php 
                _e("Traffic Details", 'ga-dash');
                ?>
</option>
	</select>
				<?php 
            }
            ?>
	</form>
<div id="gadash-progressbar"></div>
<?php 
            switch ($period) {
                case 'today':
                    $from = 'today';
                    $to = 'today';
                    $haxis = 4;
                    break;
                case 'yesterday':
                    $from = 'yesterday';
                    $to = 'yesterday';
                    $haxis = 4;
                    break;
                case '7daysAgo':
                    $from = '7daysAgo';
                    $to = 'yesterday';
                    $haxis = 2;
                    break;
                case '14daysAgo':
                    $from = '14daysAgo';
                    $to = 'yesterday';
                    $haxis = 3;
                    break;
                case '30daysAgo':
                    $from = '30daysAgo';
                    $to = 'yesterday';
                    $haxis = 5;
                    break;
                default:
                    $from = '90daysAgo';
                    $to = 'yesterday';
                    $haxis = 16;
                    break;
            }
            if ($query == 'visitBounceRate') {
                $formater = "var formatter = new google.visualization.NumberFormat({\r\n\t\t\t\t  pattern: '#,##%',\r\n\t\t\t\t  fractionDigits: 2\r\n\t\t\t\t});\r\n            \r\n\t\t\t\tformatter.format(data, 1);\t";
            } else {
                $formater = '';
            }
            $tools = new GADASH_Tools();
            if (isset($GADASH_Config->options['ga_dash_style'])) {
                $light_color = $tools->colourVariator($GADASH_Config->options['ga_dash_style'], 40);
                $dark_color = $tools->colourVariator($GADASH_Config->options['ga_dash_style'], -20);
                $css = "colors:['" . $GADASH_Config->options['ga_dash_style'] . "','" . $tools->colourVariator($GADASH_Config->options['ga_dash_style'], -20) . "'],";
                $color = $GADASH_Config->options['ga_dash_style'];
            } else {
                $css = "";
                $color = "#3366CC";
            }
            if ($period == 'realtime') {
                wp_register_style('jquery-ui-tooltip-html', $GADASH_Config->plugin_url . '/realtime/jquery/jquery.ui.tooltip.html.css');
                wp_enqueue_style('jquery-ui-tooltip-html');
                if (!wp_script_is('jquery')) {
                    wp_enqueue_script('jquery');
                }
                if (!wp_script_is('jquery-ui-tooltip')) {
                    wp_enqueue_script("jquery-ui-tooltip");
                }
                if (!wp_script_is('jquery-ui-core')) {
                    wp_enqueue_script("jquery-ui-core");
                }
                if (!wp_script_is('jquery-ui-position')) {
                    wp_enqueue_script("jquery-ui-position");
                }
                if (!wp_script_is('jquery-ui-position')) {
                    wp_enqueue_script("jquery-ui-position");
                }
                wp_register_script("jquery-ui-tooltip-html", $GADASH_Config->plugin_url . '/realtime/jquery/jquery.ui.tooltip.html.js');
                wp_enqueue_script("jquery-ui-tooltip-html");
            }
            if ($period == 'realtime') {
                ?>
<div class="realtime">
	<div class="gadash-rt-box">
		<div class='gadash-tdo-left'>
			<div class='gadash-online' id='gadash-online'>0</div>
		</div>
		<div class='gadash-tdo-right' id='gadash-tdo-right'>
			<div class="gadash-bigtext">
				<div class="gadash-bleft"><?php 
                _e("REFERRAL", 'ga-dash');
                ?>
</div>
				<div class="gadash-bright">0</div>
			</div>
			<div class="gadash-bigtext">
				<div class="gadash-bleft"><?php 
                _e("ORGANIC", 'ga-dash');
                ?>
</div>
				<div class="gadash-bright">0</div>
			</div>
			<div class="gadash-bigtext">
				<div class="gadash-bleft"><?php 
                _e("SOCIAL", 'ga-dash');
                ?>
</div>
				<div class="gadash-bright">0</div>
			</div>
			<div class="gadash-bigtext">
				<div class="gadash-bleft"><?php 
                _e("CAMPAIGN", 'ga-dash');
                ?>
</div>
				<div class="gadash-bright">0</div>
			</div>
			<div class="gadash-bigtext">
				<div class="gadash-bleft"><?php 
                _e("DIRECT", 'ga-dash');
                ?>
</div>
				<div class="gadash-bright">0</div>
			</div>
			<div class="gadash-bigtext">
				<div class="gadash-bleft"><?php 
                _e("NEW", 'ga-dash');
                ?>
</div>
				<div class="gadash-bright">0</div>
			</div>
		</div>
	</div>
	<div>
		<div id='gadash-pages' class='gadash-pages'>&nbsp;</div>
	</div>
</div>
<script type="text/javascript">
            
            var focusFlag = 1;
            
            	jQuery(document).ready(function(){
            		jQuery(window).bind("focus",function(event){
            			focusFlag = 1;
            		}).bind("blur", function(event){
            			focusFlag = 0;
            		});
            	});
            
            	jQuery(function() {
            		jQuery( document ).tooltip();
            	});
            
            	function onlyUniqueValues(value, index, self) {
            		return self.indexOf(value) === index;
            	 }
            
            	function countsessions(data, searchvalue) {
            		var count = 0;
            		for ( var i = 0; i < data["rows"].length; i = i + 1 ) {
            			if (jQuery.inArray(searchvalue, data["rows"][ i ])>-1){
            				count += parseInt(data["rows"][ i ][6]);
            			}
            		}
            		return count;
            	 }
            
            	function gadash_generatetooltip(data) {
            		var count = 0;
            		var table = "";
            		for ( var i = 0; i < data.length; i = i + 1 ) {
            				count += parseInt(data[ i ].count);
            				table += "<tr><td class='gadash-pgdetailsl'>"+data[i].value+"</td><td class='gadash-pgdetailsr'>"+data[ i ].count+"</td></tr>";
            		};
            		if (count){
            			return("<table>"+table+"</table>");
            		}else{
            			return("");
            		}
            	}
            
            	function gadash_pagedetails(data, searchvalue) {
            		var newdata = [];
            		for ( var i = 0; i < data["rows"].length; i = i + 1 ){
            			var sant=1;
            			for ( var j = 0; j < newdata.length; j = j + 1 ){
            				if (data["rows"][i][0]+data["rows"][i][1]+data["rows"][i][2]+data["rows"][i][3]==newdata[j][0]+newdata[j][1]+newdata[j][2]+newdata[j][3]){
            					newdata[j][6] = parseInt(newdata[j][6]) + parseInt(data["rows"][i][6]);
            					sant = 0;
            				}
            			}
            			if (sant){
            				newdata.push(data["rows"][i].slice());
            			}
            		}
            
            		var countrfr = 0;
            		var countkwd = 0;
            		var countdrt = 0;
            		var countscl = 0;
            		var countcpg = 0;
            		var tablerfr = "";
            		var tablekwd = "";
            		var tablescl = "";
            		var tablecpg = "";
            		var tabledrt = "";
            		for ( var i = 0; i < newdata.length; i = i + 1 ) {
            			if (newdata[i][0] == searchvalue){
            				var pagetitle = newdata[i][5];
            				
            				switch (newdata[i][3]){
            				
            					case "REFERRAL": 	countrfr += parseInt(newdata[ i ][6]);
            										tablerfr +=	"<tr><td class='gadash-pgdetailsl'>"+newdata[i][1]+"</td><td class='gadash-pgdetailsr'>"+newdata[ i ][6]+"</td></tr>";
            										break;
            					case "ORGANIC": 	countkwd += parseInt(newdata[ i ][6]);
            										tablekwd +=	"<tr><td class='gadash-pgdetailsl'>"+newdata[i][2]+"</td><td class='gadash-pgdetailsr'>"+newdata[ i ][6]+"</td></tr>";
            										break;
            					case "SOCIAL": 		countscl += parseInt(newdata[ i ][6]);
            										tablescl +=	"<tr><td class='gadash-pgdetailsl'>"+newdata[i][1]+"</td><td class='gadash-pgdetailsr'>"+newdata[ i ][6]+"</td></tr>";
            										break;
            					case "CUSTOM": 		countcpg += parseInt(newdata[ i ][6]);
                    								tablecpg +=	"<tr><td class='gadash-pgdetailsl'>"+newdata[i][1]+"</td><td class='gadash-pgdetailsr'>"+newdata[ i ][6]+"</td></tr>";
                    								break;            										
            					case "DIRECT": 		countdrt += parseInt(newdata[ i ][6]);
            										break;
            				};
            			};
            		};
            		if (countrfr){
            			tablerfr = "<table><tr><td><?php 
                _e("REFERRALS", 'ga-dash');
                ?>
 ("+countrfr+")</td></tr>"+tablerfr+"</table><br />";
            		}
            		if (countkwd){
            			tablekwd = "<table><tr><td><?php 
                _e("KEYWORDS", 'ga-dash');
                ?>
 ("+countkwd+")</td></tr>"+tablekwd+"</table><br />";
            		}
            		if (countscl){
            			tablescl = "<table><tr><td><?php 
                _e("SOCIAL", 'ga-dash');
                ?>
 ("+countscl+")</td></tr>"+tablescl+"</table><br />";
            		}
            		if (countcpg){
            			tablecpg = "<table><tr><td><?php 
                _e("CAMPAIGN", 'ga-dash');
                ?>
 ("+countcpg+")</td></tr>"+tablecpg+"</table><br />";
            		}            		
            		if (countdrt){
            			tabledrt = "<table><tr><td><?php 
                _e("DIRECT", 'ga-dash');
                ?>
 ("+countdrt+")</td></tr></table><br />";
            		}
            		return ("<p><center><strong>"+pagetitle+"</strong></center></p>"+tablerfr+tablekwd+tablescl+tablecpg+tabledrt);
            	 }
            
            	 function online_refresh(){
            		if (focusFlag){

            		jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php 
                echo $projectId;
                ?>
",from: false,to: false,query: "realtime",gadash_security_widget_reports: "<?php 
                echo wp_create_nonce('gadash_get_widgetreports');
                ?>
"}, function(data){
            			
                        if (jQuery.isNumeric(data) || typeof data === "undefined"){
                            data = [];
                            data["totalsForAllResults"] = []
                            data["totalsForAllResults"]["rt:activeUsers"] = "0";
                            data["rows"]= [];
                        }
                                    
            			if (data["totalsForAllResults"]["rt:activeUsers"]!==document.getElementById("gadash-online").innerHTML){
            				jQuery("#gadash-online").fadeOut("slow");
            				jQuery("#gadash-online").fadeOut(500);
            				jQuery("#gadash-online").fadeOut("slow", function() {
            					if ((parseInt(data["totalsForAllResults"]["rt:activeUsers"]))<(parseInt(document.getElementById("gadash-online").innerHTML))){
            						jQuery("#gadash-online").css({'background-color' : '#FFE8E8'});
            					}else{
            						jQuery("#gadash-online").css({'background-color' : '#E0FFEC'});
            					}
            					document.getElementById("gadash-online").innerHTML = data["totalsForAllResults"]["rt:activeUsers"];
            				});
            				jQuery("#gadash-online").fadeIn("slow");
            				jQuery("#gadash-online").fadeIn(500);
            				jQuery("#gadash-online").fadeIn("slow", function() {
            					jQuery("#gadash-online").css({'background-color' : '#FFFFFF'});
            				});
            			};
            
            			if (data["totalsForAllResults"]["rt:activeUsers"] == 0){
            				data["rows"]= [];
            			};
            
            			var pagepath = [];
            			var referrals = [];
            			var keywords = [];
            			var social = [];
            			var visittype = [];
            			var custom = [];
            			for ( var i = 0; i < data["rows"].length; i = i + 1 ) {
            				pagepath.push( data["rows"][ i ][0] );
            				if (data["rows"][i][3]=="REFERRAL"){
            					referrals.push( data["rows"][ i ][1] );
            				}
            				if (data["rows"][i][3]=="ORGANIC"){
            					keywords.push( data["rows"][ i ][2] );
            				}
            				if (data["rows"][i][3]=="SOCIAL"){
            					social.push( data["rows"][ i ][1] );
            				}
            				if (data["rows"][i][3]=="CUSTOM"){
            					custom.push( data["rows"][ i ][1] );
            				}            				
            				visittype.push( data["rows"][ i ][3] );
            			}

            			var upagepathstats = [];
               			var upagepath = pagepath.filter(onlyUniqueValues);
            			for ( var i = 0; i < upagepath.length; i = i + 1 ) {
            				upagepathstats[i]={"pagepath":upagepath[i],"count":countsessions(data,upagepath[i])};
            			}
            			upagepathstats.sort( function(a,b){ return b.count - a.count } );
            
            			var pgstatstable = "";
            			for ( var i = 0; i < upagepathstats.length; i = i + 1 ) {
            				if (i < <?php 
                echo $GADASH_Config->options['ga_realtime_pages'];
                ?>
){
            					pgstatstable += '<div class="gadash-pline"><div class="gadash-pleft"><a href="#" title="'+gadash_pagedetails(data, upagepathstats[i].pagepath)+'">'+upagepathstats[i].pagepath.substring(0,70)+'</a></div><div class="gadash-pright">'+upagepathstats[i].count+'</div></div>';
            				}
            			}
            			document.getElementById("gadash-pages").innerHTML='<br /><div class="gadash-pg">'+pgstatstable+'</div>';
            
            			var ureferralsstats = [];
            			var ureferrals = referrals.filter(onlyUniqueValues);
            			for ( var i = 0; i < ureferrals.length; i = i + 1 ) {
            				ureferralsstats[i]={"value":ureferrals[i],"count":countsessions(data,ureferrals[i])};
            			}
            			ureferralsstats.sort( function(a,b){ return b.count - a.count } );
            
            			var ukeywordsstats = [];
            			var ukeywords = keywords.filter(onlyUniqueValues);
            			for ( var i = 0; i < ukeywords.length; i = i + 1 ) {
            				ukeywordsstats[i]={"value":ukeywords[i],"count":countsessions(data,ukeywords[i])};
            			}
            			ukeywordsstats.sort( function(a,b){ return b.count - a.count } );
            
            			var usocialstats = [];
            			var usocial = social.filter(onlyUniqueValues);
            			for ( var i = 0; i < usocial.length; i = i + 1 ) {
            				usocialstats[i]={"value":usocial[i],"count":countsessions(data,usocial[i])};
            			}
            			usocialstats.sort( function(a,b){ return b.count - a.count } );

            			var ucustomstats = [];
            			var ucustom = custom.filter(onlyUniqueValues);
            			for ( var i = 0; i < ucustom.length; i = i + 1 ) {
            				ucustomstats[i]={"value":ucustom[i],"count":countsessions(data,ucustom[i])};
            			}
            			ucustomstats.sort( function(a,b){ return b.count - a.count } );            			
            
            			var uvisittype = ["REFERRAL","ORGANIC","SOCIAL","CUSTOM"];
            			document.getElementById("gadash-tdo-right").innerHTML = '<div class="gadash-bigtext"><a href="#" title="'+gadash_generatetooltip(ureferralsstats)+'"><div class="gadash-bleft">'+'<?php 
                _e("REFERRAL", 'ga-dash');
                ?>
'+'</a></div><div class="gadash-bright">'+countsessions(data,uvisittype[0])+'</div></div>';
            			document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><a href="#" title="'+gadash_generatetooltip(ukeywordsstats)+'"><div class="gadash-bleft">'+'<?php 
                _e("ORGANIC", 'ga-dash');
                ?>
'+'</a></div><div class="gadash-bright">'+countsessions(data,uvisittype[1])+'</div></div>';
            			document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><a href="#" title="'+gadash_generatetooltip(usocialstats)+'"><div class="gadash-bleft">'+'<?php 
                _e("SOCIAL", 'ga-dash');
                ?>
'+'</a></div><div class="gadash-bright">'+countsessions(data,uvisittype[2])+'</div></div>';
            			document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><a href="#" title="'+gadash_generatetooltip(ucustomstats)+'"><div class="gadash-bleft">'+'<?php 
                _e("CAMPAIGN", 'ga-dash');
                ?>
'+'</a></div><div class="gadash-bright">'+countsessions(data,uvisittype[3])+'</div></div>';
            
            			var uvisitortype = ["DIRECT","NEW"];
            			document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><div class="gadash-bleft">'+'<?php 
                _e("DIRECT", 'ga-dash');
                ?>
'+'</div><div class="gadash-bright">'+countsessions(data,uvisitortype[0])+'</div></div>';
            			document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><div class="gadash-bleft">'+'<?php 
                _e("NEW", 'ga-dash');
                ?>
'+'</div><div class="gadash-bright">'+countsessions(data,uvisitortype[1])+'</div></div>';
            
            		});
               };
               };
               online_refresh();
               setInterval(online_refresh, 60000);
            </script>
<?php 
            } else {
                if (array_search($query, array('referrers', 'contentpages', 'searches')) !== FALSE) {
                    ?>
<div id="gadash-trafficchannels"></div>
<div id="gadash-prs"></div>
<script type="text/javascript">
            	google.load("visualization", "1", {packages:["table","orgchart"]});

            	function checknpcounter(max) {
            		try {
            			if (npcounter == max) {
            				NProgress.done();
            			} else {
            				npcounter++;
            				NProgress.set((1/(max+1))*npcounter);
            			}
            		} catch(e) {}		
            	}
            	            	
        		try {
        	    	NProgress.configure({ parent: "#gadash-progressbar" });
        	        NProgress.configure({ showSpinner: false });
        	        NProgress.start();
        		} catch(e) {
        			jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
        			jQuery("#gadash-progressbar").html("<?php 
                    _e("A JavaScript Error is blocking plugin resources!", 'ga-dash');
                    ?>
");
        		}    
        	    npcounter = 0;
                                     
                jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php 
                    echo $projectId;
                    ?>
",from: "<?php 
                    echo $from;
                    ?>
",to: "<?php 
                    echo $to;
                    ?>
",query: "<?php 
                    echo $query;
                    ?>
",gadash_security_widget_reports: "<?php 
                    echo wp_create_nonce('gadash_get_widgetreports');
                    ?>
"}, function(response){
                	   
                    if (!jQuery.isNumeric(response)){
                        if (jQuery.isArray(response)){
                    	   gadash_prs=response;
                    	   google.setOnLoadCallback(ga_dash_drawprs(gadash_prs));
                        } else {
                        	checknpcounter(0);
                			jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
                			jQuery("#gadash-progressbar").html("<?php 
                    _e("Invalid response, more details in JavaScript Console (F12).", 'ga-dash');
                    ?>
");
                			console.log("\n********************* GADWP Log ********************* \n\n"+response);
                		}    
                	}else{
                        jQuery("#gadash-prs").css({"background-color":"#F7F7F7","height":"auto","padding-top":"125px","padding-bottom":"125px","color":"#000","text-align":"center"});  
                        jQuery("#gadash-prs").html("<?php 
                    _e("This report is unavailable", 'ga-dash');
                    ?>
 ("+response+")");                    	
                        checknpcounter(1);
                    }	
                });

                jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php 
                    echo $projectId;
                    ?>
",from: "<?php 
                    echo $from;
                    ?>
",to: "<?php 
                    echo $to;
                    ?>
",query: "trafficchannels",gadash_security_widget_reports: "<?php 
                    echo wp_create_nonce('gadash_get_widgetreports');
                    ?>
"}, function(response){
                    if (!jQuery.isNumeric(response)){
                    	if (jQuery.isArray(response)){
                        	gadash_trafficchannels=response;
                        	google.setOnLoadCallback(ga_dash_drawtrafficchannels(gadash_trafficchannels));
                         } else {
                         	checknpcounter(0);
                 			jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
                 			jQuery("#gadash-progressbar").html("<?php 
                    _e("Invalid response, more details in JavaScript Console (F12).", 'ga-dash');
                    ?>
");
                 			console.log("\n********************* GADWP Log ********************* \n\n"+response);
                 		}   
                	}else{
                        jQuery("#gadash-trafficchannels").css({"background-color":"#F7F7F7","height":"auto","padding-top":"125px","padding-bottom":"125px","color":"#000","text-align":"center"});  
                        jQuery("#gadash-trafficchannels").html("<?php 
                    _e("This report is unavailable", 'ga-dash');
                    ?>
 ("+response+")");                    	
                        checknpcounter(1);
                    }	
                });

            	function ga_dash_drawprs(gadash_prs) {
                	var data = google.visualization.arrayToDataTable(gadash_prs);
                	var options = {
                		page: 'enable',
                		pageSize: 10,
                		width: '100%'
                	};
                
                	var chart = new google.visualization.Table(document.getElementById('gadash-prs'));
                	chart.draw(data, options);
                	checknpcounter(1);
            	};                                              	

            	function ga_dash_drawtrafficchannels(gadash_trafficchannels) {
                	var data = google.visualization.arrayToDataTable(gadash_trafficchannels);
                	var options = {
                	    allowCollapse:true,
                		allowHtml:true
                	};
                
                	var chart = new google.visualization.OrgChart(document.getElementById('gadash-trafficchannels'));
                	chart.draw(data, options);
                	checknpcounter(1);
            	};
            </script>
<?php 
                } else {
                    if ($query == 'trafficdetails') {
                        ?>
<div id="gadash-trafficchannels"></div>
<div class="gadash-floatwraper">
	<div id="gadash-trafficmediums"></div>
	<div id="gadash-traffictype"></div>
</div>
<div class="gadash-floatwraper">
	<div id="gadash-trafficorganic"></div>
	<div id="gadash-socialnetworks"></div>
</div>
<script type="text/javascript">
            	google.load("visualization", "1", {packages:["corechart","orgchart"]});

            	function checknpcounter(max) {
            		try {
            			if (npcounter == max) {
            				NProgress.done();
            			} else {
            				npcounter++;
            				NProgress.set((1/(max+1))*npcounter);
            			}
            		} catch(e) {}		
            	}
            	            	
        		try {
        	    	NProgress.configure({ parent: "#gadash-progressbar" });
        	        NProgress.configure({ showSpinner: false });
        	        NProgress.start();
        		} catch(e) {
        			jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
        			jQuery("#gadash-progressbar").html("<?php 
                        _e("A JavaScript Error is blocking plugin resources!", 'ga-dash');
                        ?>
");
        		}    
        	    npcounter = 0;            	
               
                jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php 
                        echo $projectId;
                        ?>
",from: "<?php 
                        echo $from;
                        ?>
",to: "<?php 
                        echo $to;
                        ?>
",query: "medium",gadash_security_widget_reports: "<?php 
                        echo wp_create_nonce('gadash_get_widgetreports');
                        ?>
"}, function(response){

                    if (!jQuery.isNumeric(response)){
                    	if (jQuery.isArray(response)){
                        	gadash_trafficmediums=response;
                   		    google.setOnLoadCallback(ga_dash_drawtrafficmediums(gadash_trafficmediums));                        	
                         } else {
                         	checknpcounter(0);
                 			jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
                 			jQuery("#gadash-progressbar").html("<?php 
                        _e("Invalid response, more details in JavaScript Console (F12).", 'ga-dash');
                        ?>
");
                 			console.log("\n********************* GADWP Log ********************* \n\n"+response);
                 		} 
                	}else{
                        jQuery("#gadash-trafficmediums").css({"background-color":"#F7F7F7","height":"auto","padding-top":"80px","padding-bottom":"80px","color":"#000","text-align":"center"});  
                        jQuery("#gadash-trafficmediums").html("<?php 
                        _e("This report is unavailable", 'ga-dash');
                        ?>
 ("+response+")");                    	
                        checknpcounter(4);
                    }	
                });

                jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php 
                        echo $projectId;
                        ?>
",from: "<?php 
                        echo $from;
                        ?>
",to: "<?php 
                        echo $to;
                        ?>
",query: "visitorType",gadash_security_widget_reports: "<?php 
                        echo wp_create_nonce('gadash_get_widgetreports');
                        ?>
"}, function(response){
                    if (!jQuery.isNumeric(response)){
                    	if (jQuery.isArray(response)){
                    		gadash_traffictype=response;
                    		google.setOnLoadCallback(ga_dash_drawtraffictype(gadash_traffictype));                        	
                         } else {
                         	checknpcounter(0);
                 			jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
                 			jQuery("#gadash-progressbar").html("<?php 
                        _e("Invalid response, more details in JavaScript Console (F12).", 'ga-dash');
                        ?>
");
                 			console.log("\n********************* GADWP Log ********************* \n\n"+response);
                 		} 
                	}else{
                        jQuery("#gadash-traffictype").css({"background-color":"#F7F7F7","height":"auto","padding-top":"80px","padding-bottom":"80px","color":"#000","text-align":"center"});  
                        jQuery("#gadash-traffictype").html("<?php 
                        _e("This report is unavailable", 'ga-dash');
                        ?>
 ("+response+")");                    	
                        checknpcounter(4);
                    }	
                });                

                jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php 
                        echo $projectId;
                        ?>
",from: "<?php 
                        echo $from;
                        ?>
",to: "<?php 
                        echo $to;
                        ?>
",query: "trafficchannels",gadash_security_widget_reports: "<?php 
                        echo wp_create_nonce('gadash_get_widgetreports');
                        ?>
"}, function(response){

                    if (!jQuery.isNumeric(response)){
                    	if (jQuery.isArray(response)){
                        	gadash_trafficchannels=response;
                   		    google.setOnLoadCallback(ga_dash_drawtrafficchannels(gadash_trafficchannels));                        	
                         } else {
                         	checknpcounter(0);
                 			jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
                 			jQuery("#gadash-progressbar").html("<?php 
                        _e("Invalid response, more details in JavaScript Console (F12).", 'ga-dash');
                        ?>
");
                 			console.log("\n********************* GADWP Log ********************* \n\n"+response);
                 		} 
                	}else{
                        jQuery("#gadash-trafficchannels").css({"background-color":"#F7F7F7","height":"auto","padding-top":"125px","padding-bottom":"125px","color":"#000","text-align":"center"});  
                        jQuery("#gadash-trafficchannels").html("<?php 
                        _e("This report is unavailable", 'ga-dash');
                        ?>
 ("+response+")");                    	
                        checknpcounter(4);
                    }	
                });

                jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php 
                        echo $projectId;
                        ?>
",from: "<?php 
                        echo $from;
                        ?>
",to: "<?php 
                        echo $to;
                        ?>
",query: "socialNetwork",gadash_security_widget_reports: "<?php 
                        echo wp_create_nonce('gadash_get_widgetreports');
                        ?>
"}, function(response){

                    if (!jQuery.isNumeric(response)){
                    	if (jQuery.isArray(response)){
                        	gadash_socialnetworks=response;
                   		    google.setOnLoadCallback(ga_dash_drawsocialnetworks(gadash_socialnetworks));                        	
                         } else {
                         	checknpcounter(0);
                 			jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
                 			jQuery("#gadash-progressbar").html("<?php 
                        _e("Invalid response, more details in JavaScript Console (F12).", 'ga-dash');
                        ?>
");
                 			console.log("\n********************* GADWP Log ********************* \n\n"+response);
                 		}                         
                	}else{
                        jQuery("#gadash-socialnetworks").css({"background-color":"#F7F7F7","height":"auto","padding-top":"80px","padding-bottom":"80px","color":"#000","text-align":"center"});  
                        jQuery("#gadash-socialnetworks").html("<?php 
                        _e("This report is unavailable", 'ga-dash');
                        ?>
 ("+response+")");                    	
                        checknpcounter(4);
                    }	
                });  


                jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php 
                        echo $projectId;
                        ?>
",from: "<?php 
                        echo $from;
                        ?>
",to: "<?php 
                        echo $to;
                        ?>
",query: "source",gadash_security_widget_reports: "<?php 
                        echo wp_create_nonce('gadash_get_widgetreports');
                        ?>
"}, function(response){

                    if (!jQuery.isNumeric(response)){
                    	if (jQuery.isArray(response)){
                        	gadash_trafficorganic=response;
                        	google.setOnLoadCallback(ga_dash_drawtrafficorganic(gadash_trafficorganic));
                         } else {
                         	checknpcounter(0);
                 			jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
                 			jQuery("#gadash-progressbar").html("<?php 
                        _e("Invalid response, more details in JavaScript Console (F12).", 'ga-dash');
                        ?>
");
                 			console.log("\n********************* GADWP Log ********************* \n\n"+response);
                 		}                        
                	}else{
                        jQuery("#gadash-trafficorganic").css({"background-color":"#F7F7F7","height":"auto","padding-top":"80px","padding-bottom":"80px","color":"#000","text-align":"center"});  
                        jQuery("#gadash-trafficorganic").html("<?php 
                        _e("This report is unavailable", 'ga-dash');
                        ?>
 ("+response+")");                    	
                        checknpcounter(4);
                    }	
                });                                

            	function ga_dash_drawtrafficmediums(gadash_trafficmediums) {
                	var data = google.visualization.arrayToDataTable(gadash_trafficmediums);
                	var options =  {
							is3D: false,
							tooltipText: 'percentage',
							legend: 'none',
							chartArea: {width: '99%',height: '80%'},
							title: '<?php 
                        _e("Traffic Mediums", 'ga-dash');
                        ?>
',
							colors:['<?php 
                        echo esc_html($GADASH_Config->options['ga_dash_style']);
                        ?>
','<?php 
                        echo esc_html($tools->colourVariator($GADASH_Config->options['ga_dash_style'], -10));
                        ?>
','<?php 
                        echo esc_html($tools->colourVariator($GADASH_Config->options['ga_dash_style'], +20));
                        ?>
','<?php 
                        echo esc_html($tools->colourVariator($GADASH_Config->options['ga_dash_style'], +10));
                        ?>
','<?php 
                        echo esc_html($tools->colourVariator($GADASH_Config->options['ga_dash_style'], -20));
                        ?>
']
						};
                
                	var chart = new google.visualization.PieChart(document.getElementById('gadash-trafficmediums'));
                	chart.draw(data, options);
                	checknpcounter(4);
            	};

            	function ga_dash_drawtraffictype(gadash_traffictype) {
                	var data = google.visualization.arrayToDataTable(gadash_traffictype);
                	var options =  {
							is3D: false,
							tooltipText: 'percentage',
							legend: 'none',
							chartArea: {width: '99%',height: '80%'},
							title: '<?php 
                        _e("Visitor Type", 'ga-dash');
                        ?>
',
							colors:['<?php 
                        echo esc_html($GADASH_Config->options['ga_dash_style']);
                        ?>
','<?php 
                        echo esc_html($tools->colourVariator($GADASH_Config->options['ga_dash_style'], -10));
                        ?>
','<?php 
                        echo esc_html($tools->colourVariator($GADASH_Config->options['ga_dash_style'], +20));
                        ?>
','<?php 
                        echo esc_html($tools->colourVariator($GADASH_Config->options['ga_dash_style'], +10));
                        ?>
','<?php 
                        echo esc_html($tools->colourVariator($GADASH_Config->options['ga_dash_style'], -20));
                        ?>
']
						};
                
                	var chart = new google.visualization.PieChart(document.getElementById('gadash-traffictype'));
                	chart.draw(data, options);
                	checknpcounter(4);
            	};

            	function ga_dash_drawsocialnetworks(gadash_socialnetworks) {
                	var data = google.visualization.arrayToDataTable(gadash_socialnetworks);
                	var options =  {
							is3D: false,
							tooltipText: 'percentage',
							legend: 'none',
							chartArea: {width: '99%',height: '80%'},
							title: '<?php 
                        _e("Social Networks", 'ga-dash');
                        ?>
',
							colors:['<?php 
                        echo esc_html($GADASH_Config->options['ga_dash_style']);
                        ?>
','<?php 
                        echo esc_html($tools->colourVariator($GADASH_Config->options['ga_dash_style'], -10));
                        ?>
','<?php 
                        echo esc_html($tools->colourVariator($GADASH_Config->options['ga_dash_style'], +20));
                        ?>
','<?php 
                        echo esc_html($tools->colourVariator($GADASH_Config->options['ga_dash_style'], +10));
                        ?>
','<?php 
                        echo esc_html($tools->colourVariator($GADASH_Config->options['ga_dash_style'], -20));
                        ?>
']
						};
                
                	var chart = new google.visualization.PieChart(document.getElementById('gadash-socialnetworks'));
                	chart.draw(data, options);
                	checknpcounter(4);
            	}; 

            	function ga_dash_drawtrafficorganic(gadash_trafficorganic) {
                	var data = google.visualization.arrayToDataTable(gadash_trafficorganic);
                	var options =  {
							is3D: false,
							tooltipText: 'percentage',
							legend: 'none',
							chartArea: {width: '99%',height: '80%'},
							title: '<?php 
                        _e("Search Engines", 'ga-dash');
                        ?>
',
							colors:['<?php 
                        echo esc_html($GADASH_Config->options['ga_dash_style']);
                        ?>
','<?php 
                        echo esc_html($tools->colourVariator($GADASH_Config->options['ga_dash_style'], -10));
                        ?>
','<?php 
                        echo esc_html($tools->colourVariator($GADASH_Config->options['ga_dash_style'], +20));
                        ?>
','<?php 
                        echo esc_html($tools->colourVariator($GADASH_Config->options['ga_dash_style'], +10));
                        ?>
','<?php 
                        echo esc_html($tools->colourVariator($GADASH_Config->options['ga_dash_style'], -20));
                        ?>
']
						};
                
                	var chart = new google.visualization.PieChart(document.getElementById('gadash-trafficorganic'));
                	chart.draw(data, options);
                	checknpcounter(4);
            	};             	           	 

            	function ga_dash_drawtrafficchannels(gadash_trafficchannels) {
                	var data = google.visualization.arrayToDataTable(gadash_trafficchannels);
                	var options = {
                	    allowCollapse:true,
                		allowHtml:true
                	};
                
                	var chart = new google.visualization.OrgChart(document.getElementById('gadash-trafficchannels'));
                	chart.draw(data, options);
                	checknpcounter(4);
            	};
            </script>
<?php 
                    } else {
                        if ($query == 'locations') {
                            ?>
<div id="gadash-map"></div>
<div id="gadash-locations"></div>
<script type="text/javascript">
            	google.load("visualization", "1", {packages:["geochart","table"]});

            	function checknpcounter(max) {
            		try {
            			if (npcounter == max) {
            				NProgress.done();
            			} else {
            				npcounter++;
            				NProgress.set((1/(max+1))*npcounter);
            			}
            		} catch(e) {}		
            	}
            	
        		try {
        	    	NProgress.configure({ parent: "#gadash-progressbar" });
        	        NProgress.configure({ showSpinner: false });
        	        NProgress.start();
        		} catch(e) {
        			jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
        			jQuery("#gadash-progressbar").html("<?php 
                            _e("A JavaScript Error is blocking plugin resources!", 'ga-dash');
                            ?>
");
        		}    
        	    npcounter = 0;
                        
                jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php 
                            echo $projectId;
                            ?>
",from: "<?php 
                            echo $from;
                            ?>
",to: "<?php 
                            echo $to;
                            ?>
",query: "<?php 
                            echo $query;
                            ?>
",gadash_security_widget_reports: "<?php 
                            echo wp_create_nonce('gadash_get_widgetreports');
                            ?>
"}, function(response){

                    if (!jQuery.isNumeric(response)){
                    	if (jQuery.isArray(response)){
                        	gadash_locations=response;
                    		google.setOnLoadCallback(ga_dash_drawmaplocations(gadash_locations));
                    		google.setOnLoadCallback(ga_dash_drawlocations(gadash_locations));                        	
                         } else {
                         	checknpcounter(0);
                 			jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
                 			jQuery("#gadash-progressbar").html("<?php 
                            _e("Invalid response, more details in JavaScript Console (F12).", 'ga-dash');
                            ?>
");
                 			console.log("\n********************* GADWP Log ********************* \n\n"+response);
                 		}                        
                	}else{
                        jQuery("#gadash-map").css({"background-color":"#F7F7F7","height":"auto","padding-top":"125px","padding-bottom":"125px","color":"#000","text-align":"center"});  
                        jQuery("#gadash-map").html("<?php 
                            _e("This report is unavailable", 'ga-dash');
                            ?>
 ("+response+")");
                        checknpcounter(1);                    	
                        jQuery("#gadash-locations").css({"background-color":"#F7F7F7","height":"auto","padding-top":"125px","padding-bottom":"125px","color":"#000","text-align":"center"});  
                        jQuery("#gadash-locations").html("<?php 
                            _e("This report is unavailable", 'ga-dash');
                            ?>
 ("+response+")");
                        checknpcounter(1);
                    }	
                });            	
            	function ga_dash_drawmaplocations(gadash_locations) {
                	
            		var data = google.visualization.arrayToDataTable(gadash_locations);
            	    
            		var options = {
            			chartArea: {width: '99%',height: '90%'},	
            			colors: ['<?php 
                            echo $light_color;
                            ?>
', '<?php 
                            echo $dark_color;
                            ?>
'],
            			<?php 
                            $tools = new GADASH_Tools();
                            $tools->getcountrycodes();
                            if ($GADASH_Config->options['ga_target_geomap'] and isset($tools->country_codes[$GADASH_Config->options['ga_target_geomap']])) {
                                ?>
        				region : '<?php 
                                echo esc_html($GADASH_Config->options['ga_target_geomap']);
                                ?>
',
        				displayMode : 'markers',
        				datalessRegionColor : 'EFEFEF'
            			<?php 
                            }
                            ?>
            			}
            		var chart = new google.visualization.GeoChart(document.getElementById('gadash-map'));
            		chart.draw(data, options);
            		checknpcounter(1);
            	}

            	function ga_dash_drawlocations(gadash_locations) {
                	var data = google.visualization.arrayToDataTable(gadash_locations);
                	var options = {
                		page: 'enable',
                		pageSize: 10,
                		width: '100%'
                	};
                
                	var chart = new google.visualization.Table(document.getElementById('gadash-locations'));
                	chart.draw(data, options);
                	checknpcounter(1);
            	};
            </script>
<?php 
                        } else {
                            ?>
<div id="gadash-mainchart"></div>
<div id="gadash-bottomstats" class="gadash-wrapper">
	<div class="inside">
		<div class="small-box">
			<h3><?php 
                            _e("Sessions", 'ga-dash');
                            ?>
</h3>
			<p id="gdsessions">&nbsp;</p>
		</div>
		<div class="small-box">
			<h3><?php 
                            _e("Users", 'ga-dash');
                            ?>
</h3>
			<p id="gdusers">&nbsp;</p>
		</div>
		<div class="small-box">
			<h3><?php 
                            _e("Page Views", 'ga-dash');
                            ?>
</h3>
			<p id="gdpageviews">&nbsp;</p>
		</div>
		<div class="small-box">
			<h3><?php 
                            _e("Bounce Rate", 'ga-dash');
                            ?>
</h3>
			<p id="gdbouncerate">&nbsp;</p>
		</div>
		<div class="small-box">
			<h3><?php 
                            _e("Organic Search", 'ga-dash');
                            ?>
</h3>
			<p id="gdorganicsearch">&nbsp;</p>
		</div>
		<div class="small-box">
			<h3><?php 
                            _e("Pages/Session", 'ga-dash');
                            ?>
</h3>
			<p id="gdpagespervisit">&nbsp;</p>
		</div>
	</div>
</div>
<script type="text/javascript">
            
    google.load("visualization", "1", {packages:["corechart"]});

    function checknpcounter(max) {
    	try {
    		if (npcounter == max) {
    			NProgress.done();
    		} else {
    			npcounter++;
    			NProgress.set((1/(max+1))*npcounter);
    		}
    	} catch(e) {}		
    }
        
	try {
    	NProgress.configure({ parent: "#gadash-progressbar" });
        NProgress.configure({ showSpinner: false });
        NProgress.start();
	} catch(e) {
		jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
		jQuery("#gadash-progressbar").html("<?php 
                            _e("A JavaScript Error is blocking plugin resources!", 'ga-dash');
                            ?>
");
	}    
    npcounter = 0;
                
    jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php 
                            echo $projectId;
                            ?>
",from: "<?php 
                            echo $from;
                            ?>
",to: "<?php 
                            echo $to;
                            ?>
",query: "<?php 
                            echo $query;
                            ?>
",gadash_security_widget_reports: "<?php 
                            echo wp_create_nonce('gadash_get_widgetreports');
                            ?>
"}, function(response){

        if (!jQuery.isNumeric(response)){
            if (jQuery.isArray(response)){
            	gadash_mainchart=response;
       		    google.setOnLoadCallback(ga_dash_drawmainchart(gadash_mainchart));            	
             } else {
             	checknpcounter(0);
     			jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
     			jQuery("#gadash-progressbar").html("<?php 
                            _e("Invalid response, more details in JavaScript Console (F12).", 'ga-dash');
                            ?>
");
     			console.log("\n********************* GADWP Log ********************* \n\n"+response);
     		}             
    	}else{
            jQuery("#gadash-mainchart").css({"background-color":"#F7F7F7","height":"auto","padding-top":"125px","padding-bottom":"125px","color":"#000","text-align":"center"});  
            jQuery("#gadash-mainchart").html("<?php 
                            _e("This report is unavailable", 'ga-dash');
                            ?>
 ("+response+")");
            checknpcounter(1);
        }	
    });

    jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php 
                            echo $projectId;
                            ?>
",from: "<?php 
                            echo $from;
                            ?>
",to: "<?php 
                            echo $to;
                            ?>
",query: "bottomstats",gadash_security_widget_reports: "<?php 
                            echo wp_create_nonce('gadash_get_widgetreports');
                            ?>
"}, function(response){

        if (!jQuery.isNumeric(response)){
        	if (jQuery.isArray(response)){
            	gadash_bottomstats=response;
       		    ga_dash_drawbottomstats(gadash_bottomstats);
             } else {
             	checknpcounter(0);
     			jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
     			jQuery("#gadash-progressbar").html("<?php 
                            _e("Invalid response, more details in JavaScript Console (F12).", 'ga-dash');
                            ?>
");
     			console.log("\n********************* GADWP Log ********************* \n\n"+response);
     		}              
    	}else{
            jQuery("#gadash-bottomstats").css({"background-color":"#F7F7F7","height":"auto","padding-top":"40px","padding-bottom":"40px","color":"#000","text-align":"center","width": "98%"});  
            jQuery("#gadash-bottomstats").html("<?php 
                            _e("This report is unavailable", 'ga-dash');
                            ?>
 ("+response+")");
            checknpcounter(1);
        }	
    });

	function ga_dash_drawbottomstats(gadash_bottomstats) {
		jQuery("#gadash-bottomstats #gdsessions").text(gadash_bottomstats[0]);
		jQuery("#gadash-bottomstats #gdusers").text(gadash_bottomstats[1]);
		jQuery("#gadash-bottomstats #gdpageviews").text(gadash_bottomstats[2]);
		jQuery("#gadash-bottomstats #gdbouncerate").text(parseFloat(gadash_bottomstats[3]).toFixed(2)+"%");
		jQuery("#gadash-bottomstats #gdorganicsearch").text(gadash_bottomstats[4]);
		jQuery("#gadash-bottomstats #gdpagespervisit").text(parseFloat(gadash_bottomstats[5]).toFixed(2));
		checknpcounter(1);
	}	       
                            
	function ga_dash_drawmainchart(gadash_mainchart) {
		
    var data = google.visualization.arrayToDataTable(gadash_mainchart);

    var options = {
	  legend: {position: 'none'},
	  pointSize: 3,<?php 
                            echo $css;
                            ?>
	  chartArea: {width: '99%',height: '90%'},
	  vAxis: { textPosition: "in", minValue: 0},
	  hAxis: { textPosition: 'none' }
	};
	<?php 
                            echo $formater;
                            ?>
    var chart = new google.visualization.AreaChart(document.getElementById('gadash-mainchart'));
	chart.draw(data, options);
	checknpcounter(1);
	};
</script>
<?php 
                        }
                    }
                }
            }
        }
Ejemplo n.º 3
0
<?php 
        }
        self::output_sidebar();
    }
    // Network Settings
    public static function general_settings_network()
    {
        global $GADASH_Config;
        global $wp_version;
        $tools = new GADASH_Tools();
        if (!current_user_can('manage_network_options')) {
            return;
        }
        $options = self::set_get_options('network');
        /*
         * Include GAPI
         */
        echo '<div id="gapi-warning" class="updated"><p>' . __('Loading the required libraries. If this results in a blank screen or a fatal error, try this solution:', "ga-dash") . ' <a href="https://deconf.com/error-codes-in-google-analytics-dashboard-for-wordpress/?utm_source=gadwp_config&utm_medium=link&utm_content=general_screen&utm_campaign=gadwp">Library conflicts between WordPress plugins</a></p></div>';
        include_once $GADASH_Config->plugin_path . '/tools/gapi.php';
        global $GADASH_GAPI;
        echo '<script type="text/javascript">jQuery("#gapi-warning").hide()</script>';
        if (isset($_POST['ga_dash_code'])) {
            if (!stripos('x' . $_POST['ga_dash_code'], 'UA-', 1) == 1) {
                try {
                    $GADASH_GAPI->client->authenticate($_POST['ga_dash_code']);
                    $GADASH_Config->options['ga_dash_token'] = $GADASH_GAPI->client->getAccessToken();
                    $google_token = json_decode($GADASH_GAPI->client->getAccessToken());
                    $GADASH_Config->options['ga_dash_refresh_token'] = $google_token->refresh_token;
                    $GADASH_Config->set_plugin_options(true);
                    $message = "<div class='updated'><p>" . __("Plugin authorization succeeded.", 'ga-dash') . "</p></div>";
                    $options = self::set_get_options('network');
                    if (is_multisite()) {
                        // Cleanup errors on the entire network
                        foreach (wp_get_sites(array('limit' => apply_filters('gadwp_sites_limit', 100))) as $blog) {
                            switch_to_blog($blog['blog_id']);
                            delete_transient('ga_dash_gapi_errors');
                            restore_current_blog();
                        }
                    } else {
                        delete_transient('ga_dash_gapi_errors');
                    }
                } catch (Google_IO_Exception $e) {
                    set_transient('ga_dash_lasterror', date('Y-m-d H:i:s') . ': ' . esc_html($e), $GADASH_GAPI->error_timeout);
                    return false;
                } catch (Google_Service_Exception $e) {
                    set_transient('ga_dash_lasterror', date('Y-m-d H:i:s') . ': ' . esc_html("(" . $e->getCode() . ") " . $e->getMessage()), $GADASH_GAPI->error_timeout);
                    set_transient('ga_dash_gapi_errors', $e->getErrors(), $GADASH_GAPI->error_timeout);
                    return $e->getCode();
                } catch (Exception $e) {
                    set_transient('ga_dash_lasterror', date('Y-m-d H:i:s') . ': ' . esc_html($e) . "\nResponseHttpCode:" . $e->getCode(), $GADASH_GAPI->error_timeout);
                    $GADASH_GAPI->reset_token(false);
                }
            } else {
                $message = "<div class='error'><p>" . __("The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try again, and use the red link to get your access code", 'ga-dash') . ".</p></div>";
            }
        }
        if (isset($_POST['Refresh'])) {
            if (isset($_POST['gadash_security']) && wp_verify_nonce($_POST['gadash_security'], 'gadash_form')) {
                $GADASH_Config->options['ga_dash_profile_list'] = '';
                $message = "<div class='updated'><p>" . __("Properties refreshed.", 'ga-dash') . "</p></div>";
                $options = self::set_get_options('network');
            } else {
                $message = "<div class='error'><p>" . __("Cheating Huh?", 'ga-dash') . "</p></div>";
            }
        }
        if ($GADASH_Config->options['ga_dash_token'] and $GADASH_GAPI->client->getAccessToken()) {
            if ($GADASH_Config->options['ga_dash_profile_list']) {
                $profiles = $GADASH_Config->options['ga_dash_profile_list'];
            } else {
                $profiles = $GADASH_GAPI->refresh_profiles();
            }
            if ($profiles) {
                $GADASH_Config->options['ga_dash_profile_list'] = $profiles;
                if (isset($GADASH_Config->options['ga_dash_tableid_jail']) and !$GADASH_Config->options['ga_dash_tableid_jail']) {
                    $profile = $tools->guess_default_domain($profiles);
                    $GADASH_Config->options['ga_dash_tableid_jail'] = $profile;
                    $GADASH_Config->options['ga_dash_tableid'] = $profile;
                }
                $GADASH_Config->set_plugin_options(true);
                $options = self::set_get_options('network');
            }
        }
        if (isset($_POST['Clear'])) {
            if (isset($_POST['gadash_security']) && wp_verify_nonce($_POST['gadash_security'], 'gadash_form')) {
                $tools->clear_cache();
                $message = "<div class='updated'><p>" . __("Cleared Cache.", 'ga-dash') . "</p></div>";
            } else {
                $message = "<div class='error'><p>" . __("Cheating Huh?", 'ga-dash') . "</p></div>";
            }
        }
        if (isset($_POST['Reset'])) {
            if (isset($_POST['gadash_security']) && wp_verify_nonce($_POST['gadash_security'], 'gadash_form')) {
                $GADASH_GAPI->reset_token(true);
                $tools->clear_cache();
                $message = "<div class='updated'><p>" . __("Token Reseted and Revoked.", 'ga-dash') . "</p></div>";
                $options = self::set_get_options('Reset');
            } else {
                $message = "<div class='error'><p>" . __("Cheating Huh?", 'ga-dash') . "</p></div>";
            }
        }
        if (isset($_POST['options']['ga_dash_hidden']) and !isset($_POST['Clear']) and !isset($_POST['Reset']) and !isset($_POST['Refresh'])) {
            $message = "<div class='updated'><p>" . __("Settings saved.", 'ga-dash') . "</p></div>";
            if (!(isset($_POST['gadash_security']) && wp_verify_nonce($_POST['gadash_security'], 'gadash_form'))) {
                $message = "<div class='error'><p>" . __("Cheating Huh?", 'ga-dash') . "</p></div>";
            }
        }
        if (isset($_POST['Hide'])) {
            if (isset($_POST['gadash_security']) && wp_verify_nonce($_POST['gadash_security'], 'gadash_form')) {
                $message = "<div class='updated'><p>" . __("All other domains/properties were removed.", 'ga-dash') . "</p></div>";
                $lock_profile = $tools->get_selected_profile($GADASH_Config->options['ga_dash_profile_list'], $GADASH_Config->options['ga_dash_tableid_jail']);
                $GADASH_Config->options['ga_dash_profile_list'] = array($lock_profile);
                $options = self::set_get_options('network');
            } else {
                $message = "<div class='error'><p>" . __("Cheating Huh?", 'ga-dash') . "</p></div>";
            }
        }
        ?>
	<div class="wrap">
		<?php 
        echo "<h2>" . __("Google Analytics Settings", 'ga-dash') . "</h2>";
        ?>
<hr>
										</div>
										<div id="poststuff">
											<div id="post-body" class="metabox-holder columns-2">
												<div id="post-body-content">
													<div class="settings-wrapper">
														<div class="inside">
						<?php 
        if ($GADASH_GAPI->gapi_errors_handler()) {
            $message = "<div class='error'><p>" . __("Something went wrong, check", 'ga-dash') . " <a href='" . menu_page_url('gadash_errors_debugging', false) . "'>" . __('Errors & Debug', 'ga-dash') . "</a> " . __('or', 'ga-dash') . " <a href='" . menu_page_url('gadash_settings', false) . "'>" . __('authorize the plugin', 'ga-dash') . "</a>.</p></div>";
        }
        if (isset($_POST['Authorize'])) {
            $tools->clear_cache();
            $GADASH_GAPI->token_request();
            echo "<div class='updated'><p>" . __("Use the red link (see below) to generate and get your access code!", 'ga-dash') . "</p></div>";
        } else {
            if (isset($message)) {
                echo $message;
            }
            ?>
						<form name="ga_dash_form" method="post"
																action="<?php 
            echo esc_url($_SERVER['REQUEST_URI']);
            ?>
">
																<input type="hidden" name="options[ga_dash_hidden]"
																	value="Y">
							<?php 
            wp_nonce_field('gadash_form', 'gadash_security');
            ?>
							<table class="options">
																	<tr>
																		<td colspan="2"><?php 
            echo "<h2>" . __("Network Setup", 'ga-dash') . "</h2>";
            ?>
</td>
																	</tr>
																	<tr>
																		<td colspan="2" class="title">
																			<div class="onoffswitch">
																				<input type="checkbox"
																					name="options[ga_dash_network]" value="1"
																					class="onoffswitch-checkbox" id="ga_dash_network"
																					<?php 
            checked($options['ga_dash_network'], 1);
            ?>
																					onchange="this.form.submit()"> <label
																					class="onoffswitch-label" for="ga_dash_network">
																					<div class="onoffswitch-inner"></div>
																					<div class="onoffswitch-switch"></div>
																				</label>
																			</div>
																			<div class="switch-desc"><?php 
            _e(" use a single Google Analytics account for the entire network", 'ga-dash');
            ?>
</div>
																		</td>
																	</tr>
								<?php 
            if ($options['ga_dash_network']) {
                //Network Mode check
                ?>
								<tr>
																		<td colspan="2"><hr></td>
																	</tr>
																	<tr>
																		<td colspan="2"><?php 
                echo "<h2>" . __("Plugin Authorization", 'ga-dash') . "</h2>";
                ?>
</td>
																	</tr>
																	<tr>
																		<td colspan="2" class="info">
							<?php 
                echo __("You should watch the", 'ga-dash') . " <a href='https://deconf.com/google-analytics-dashboard-wordpress/' target='_blank'>" . __("video", 'ga-dash') . "</a> " . __("and read this", 'ga-dash') . " <a href='https://deconf.com/google-analytics-dashboard-wordpress/' target='_blank'>" . __("tutorial", 'ga-dash') . "</a> " . __("before proceeding to authorization. This plugin requires a properly configured Google Analytics account", 'ga-dash') . "!";
                ?>
							</td>
																	</tr>
							<?php 
                if (!$options['ga_dash_token'] or $options['ga_dash_userapi']) {
                    ?>
							<tr>
																		<td colspan="2" class="info"><input
																			name="options[ga_dash_userapi]" type="checkbox"
																			id="ga_dash_userapi" value="1"
																			<?php 
                    checked($options['ga_dash_userapi'], 1);
                    ?>
																			onchange="this.form.submit()" /><?php 
                    _e(" use your own API Project credentials", 'ga-dash');
                    ?>
								</td>
																	</tr>
							<?php 
                }
                if ($options['ga_dash_userapi']) {
                    ?>
							<tr>
																		<td class="title"><label for="options[ga_dash_apikey]"><?php 
                    _e("API Key:", 'ga-dash');
                    ?>
</label>
																		</td>
																		<td><input type="text" name="options[ga_dash_apikey]"
																			value="<?php 
                    echo esc_attr($options['ga_dash_apikey']);
                    ?>
"
																			size="40" required="required"></td>
																	</tr>
																	<tr>
																		<td class="title"><label
																			for="options[ga_dash_clientid]"><?php 
                    _e("Client ID:", 'ga-dash');
                    ?>
</label>
																		</td>
																		<td><input type="text"
																			name="options[ga_dash_clientid]"
																			value="<?php 
                    echo esc_attr($options['ga_dash_clientid']);
                    ?>
"
																			size="40" required="required"></td>
																	</tr>
																	<tr>
																		<td class="title"><label
																			for="options[ga_dash_clientsecret]"><?php 
                    _e("Client Secret:", 'ga-dash');
                    ?>
</label>
																		</td>
																		<td><input type="text"
																			name="options[ga_dash_clientsecret]"
																			value="<?php 
                    echo esc_attr($options['ga_dash_clientsecret']);
                    ?>
"
																			size="40" required="required"> <input type="hidden"
																			name="options[ga_dash_hidden]" value="Y">
										<?php 
                    wp_nonce_field('gadash_form', 'gadash_security');
                    ?>
									</td>
																	</tr>
							<?php 
                }
                ?>
								<?php 
                if ($options['ga_dash_token']) {
                    ?>
						<tr>
																		<td colspan="2"><input type="submit" name="Reset"
																			class="button button-secondary"
																			value="<?php 
                    _e("Clear Authorization", 'ga-dash');
                    ?>
" />
																			<input type="submit" name="Clear"
																			class="button button-secondary"
																			value="<?php 
                    _e("Clear Cache", 'ga-dash');
                    ?>
" /> <input
																			type="submit" name="Refresh"
																			class="button button-secondary"
																			value="<?php 
                    _e("Refresh Properties", 'ga-dash');
                    ?>
" /></td>
																	</tr>
																	<tr>
																		<td colspan="2"><hr></td>
																	</tr>
																	<tr>
																		<td colspan="2"><?php 
                    echo "<h2>" . __("Properties/Views Settings", 'ga-dash') . "</h2>";
                    ?>
</td>
																	</tr>
								<?php 
                    if (isset($options['ga_dash_tableid_network'])) {
                        $options['ga_dash_tableid_network'] = json_decode(json_encode($options['ga_dash_tableid_network']), FALSE);
                    }
                    foreach (wp_get_sites(array('limit' => apply_filters('gadwp_sites_limit', 100))) as $blog) {
                        ?>
							<tr>
																		<td class="title-select"><label
																			for="ga_dash_tableid_network"><?php 
                        echo '<strong>' . $blog['domain'] . $blog['path'] . '</strong>: ';
                        ?>
</label></td>
																		<td><select id="ga_dash_tableid_network"
																			<?php 
                        disabled(is_array($options['ga_dash_profile_list']), false);
                        ?>
																			name="options[ga_dash_tableid_network][<?php 
                        echo $blog['blog_id'];
                        ?>
]">
									<?php 
                        if (is_array($options['ga_dash_profile_list'])) {
                            foreach ($options['ga_dash_profile_list'] as $items) {
                                if ($items[3]) {
                                    echo '<option value="' . esc_attr($items[1]) . '" ' . selected($items[1], isset($options['ga_dash_tableid_network']->{$blog}['blog_id']) ? $options['ga_dash_tableid_network']->{$blog}['blog_id'] : '');
                                    echo ' title="' . __("View Name:", 'ga-dash') . ' ' . esc_attr($items[0]) . '">' . esc_html($tools->strip_protocol($items[3])) . ' &#8658; ' . esc_attr($items[0]) . '</option>';
                                }
                            }
                        } else {
                            echo '<option value="">' . __("Property not found", 'ga-dash') . '</option>';
                        }
                        ?>
								</select><br /></td>
																	</tr>
							<?php 
                    }
                    ?>
                    												<tr>
																		<td colspan="2"><?php 
                    echo "<h2>" . __("Automatic Updates", 'ga-dash') . "</h2>";
                    ?>
</td>
																	</tr>
																	<tr>
																		<td colspan="2" class="title">
																			<div class="onoffswitch">
																				<input type="checkbox"
																					name="options[automatic_updates_minorversion]"
																					value="1" class="onoffswitch-checkbox"
																					id="automatic_updates_minorversion"
																					<?php 
                    checked($options['automatic_updates_minorversion'], 1);
                    ?>
>
																				<label class="onoffswitch-label"
																					for="automatic_updates_minorversion">
																					<div class="onoffswitch-inner"></div>
																					<div class="onoffswitch-switch"></div>
																				</label>
																			</div>
																			<div class="switch-desc"><?php 
                    echo " " . __("automatic updates for minor versions (security and maintenance releases only)", 'ga-dash');
                    ?>
</div>
																		</td>
																	</tr>
																	<tr>
																		<td colspan="2"><hr><?php 
                    echo "<h2>" . __("Exclude Tracking", 'ga-dash') . "</h2>";
                    ?>
</td>
																	</tr>
																	<tr>
																		<td colspan="2" class="title">
																			<div class="onoffswitch">
																				<input type="checkbox"
																					name="options[ga_dash_excludesa]" value="1"
																					class="onoffswitch-checkbox" id="ga_dash_excludesa"<?php 
                    checked($options['ga_dash_excludesa'], 1);
                    ?>
">
																				<label class="onoffswitch-label"
																					for="ga_dash_excludesa">
																					<div class="onoffswitch-inner"></div>
																					<div class="onoffswitch-switch"></div>
																				</label>
																			</div>
																			<div class="switch-desc"><?php 
                    _e(" exclude Super Admin tracking for the entire network", 'ga-dash');
                    ?>
</div>
																		</td>
																	</tr>
																	<tr>
																		<td colspan="2"><hr></td>
																	</tr>
																	<tr>
																		<td colspan="2" class="submit"><input type="submit"
																			name="Submit" class="button button-primary"
																			value="<?php 
                    _e('Save Changes', 'ga-dash');
                    ?>
" /></td>
																	</tr>
			<?php 
                } else {
                    ?>
								<tr>
																		<td colspan="2"><hr></td>
																	</tr>
																	<tr>
																		<td colspan="2"><input type="submit" name="Authorize"
																			class="button button-secondary" id="authorize"
																			value="<?php 
                    _e("Authorize Plugin", 'ga-dash');
                    ?>
" />
																			<input type="submit" name="Clear"
																			class="button button-secondary"
																			value="<?php 
                    _e("Clear Cache", 'ga-dash');
                    ?>
" /></td>
																	</tr>
								   <?php 
                }
                //Network Mode check
                ?>
									<tr>
																		<td colspan="2"><hr></td>
																	</tr>
																</table>
															</form>
				<?php 
                self::output_sidebar();
                return;