⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 usercountry.php

📁 一款可以和GOOGLE媲美的开源统计系统,运用AJAX.功能强大. 无色提示:按照需要PHP5.1以上和MySQL数据库支持。
💻 PHP
字号:
<?php/** * Piwik - Open source web analytics *  * @link http://piwik.org * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later * @version $Id: UserCountry.php 622 2008-09-04 23:24:26Z matt $ *  * @package Piwik_UserCountry */	/** *  * @package Piwik_UserCountry */class Piwik_UserCountry extends Piwik_Plugin{		public function getInformation()	{		$info = array(			'name' => 'Visitors Country',			'description' => 'Reports the Country of the visitors.',			'author' => 'Piwik',			'homepage' => 'http://piwik.org/',			'version' => '0.1',		);		return $info;	}		function getListHooksRegistered()	{		$hooks = array(			'ArchiveProcessing_Day.compute' => 'archiveDay',			'ArchiveProcessing_Period.compute' => 'archivePeriod',			'WidgetsList.add' => 'addWidgets',			'Menu.add' => 'addMenu',		);		return $hooks;	}			function addWidgets()	{		Piwik_AddWidget( 'UserCountry', 'getContinent', Piwik_Translate('UserCountry_WidgetContinents'));		Piwik_AddWidget( 'UserCountry', 'getCountry', Piwik_Translate('UserCountry_WidgetCountries'));	}		function addMenu()	{		Piwik_AddMenu('General_Visitors', 'UserCountry_SubmenuLocations', array('module' => 'UserCountry'));	}		function archivePeriod( $notification )	{		$archiveProcessing = $notification->getNotificationObject();				$dataTableToSum = array( 				'UserCountry_country',				'UserCountry_continent',		);				$nameToCount = $archiveProcessing->archiveDataTable($dataTableToSum);		$record = new Piwik_ArchiveProcessing_Record_Numeric(												'UserCountry_distinctCountries', 												$nameToCount['UserCountry_country']['level0']											);	}		function archiveDay($notification)	{		$archiveProcessing = $notification->getNotificationObject();				$recordName = 'UserCountry_country';		$labelSQL = "location_country";		$tableCountry = $archiveProcessing->getDataTableInterestForLabel($labelSQL);		$record = new Piwik_ArchiveProcessing_Record_Numeric('UserCountry_distinctCountries', $tableCountry->getRowsCount());		$record = new Piwik_ArchiveProcessing_Record_BlobArray($recordName, $tableCountry->getSerialized());		$recordName = 'UserCountry_continent';		$labelSQL = "location_continent";		$tableContinent = $archiveProcessing->getDataTableInterestForLabel($labelSQL);		$record = new Piwik_ArchiveProcessing_Record_BlobArray($recordName, $tableContinent->getSerialized());	}}require_once "ViewDataTable.php";class Piwik_UserCountry_Controller extends Piwik_Controller {	function index()	{		$view = new Piwik_View('UserCountry/index.tpl');				$view->urlSparklineCountries = $this->getUrlSparkline('getLastDistinctCountriesGraph');		$view->numberDistinctCountries = $this->getNumberOfDistinctCountries(true);				$view->dataTableCountry = $this->getCountry(true);		$view->dataTableContinent = $this->getContinent(true);				echo $view->render();	}		function getCountry( $fetch = false)	{		$view = Piwik_ViewDataTable::factory();		$view->init( 'UserCountry', __FUNCTION__, "UserCountry.getCountry" );		$view->disableExcludeLowPopulation();				$view->setColumnsToDisplay( array('label','nb_uniq_visitors') );		$view->setSortedColumn( 1 );		$view->disableSearchBox();		$view->setLimit( 5 );				return $this->renderView($view, $fetch);	}	function getNumberOfDistinctCountries( $fetch = false)	{		return $this->getNumericValue('UserCountry.getNumberOfDistinctCountries');	}	function getLastDistinctCountriesGraph( $fetch = false )	{		$view = $this->getLastUnitGraph('UserCountry',__FUNCTION__, "UserCountry.getNumberOfDistinctCountries");		return $this->renderView($view, $fetch);	}		function getContinent( $fetch = false)	{		$view = Piwik_ViewDataTable::factory( 'graphVerticalBar' );		$view->init( 'UserCountry', __FUNCTION__, "UserCountry.getContinent" );		$view->disableExcludeLowPopulation();		$view->disableSearchBox();		$view->disableOffsetInformation();		$view->disableSort();		$view->setColumnsToDisplay( array('label','nb_uniq_visitors') );		$view->setSortedColumn( 1 );				return $this->renderView($view, $fetch);	}}function Piwik_getFlagFromCode($code){	$path = 'plugins/UserCountry/flags/%s.png';		$normalPath = sprintf($path,$code);		// flags not in the package !	if(!file_exists($normalPath))	{		return sprintf($path, 'xx');				}	return $normalPath;}function Piwik_ContinentTranslate($label){	if($label == 'unk')	{		return Piwik_Translate('General_Unknown');	}		return Piwik_Translate('UserCountry_continent_'. $label);}function Piwik_CountryTranslate($label){	if($label == 'xx')	{		return Piwik_Translate('General_Unknown');	}	return Piwik_Translate('UserCountry_country_'. $label);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -