Ejemplo n.º 1
0
 /**
  * Returns an array of region names mapped by country code & region code.
  * 
  * @return array
  */
 public static function getRegionNames()
 {
     if (is_null(self::$regionNames)) {
         require_once PIWIK_INCLUDE_PATH . '/libs/MaxMindGeoIP/geoipregionvars.php';
         self::$regionNames = $GEOIP_REGION_NAME;
     }
     return self::$regionNames;
 }