Version Description
Download this release
Release Info
Developer | namith.jawahar |
Plugin | Wp-Insert |
Version | 2.0.1 |
Comparing to | |
See all releases |
Code changes from version 2.0 to 2.0.1
- includes/common/common.php +0 -1
- includes/common/countries.php +22 -4
- includes/common/geoip/GeoIP.dat +0 -0
- includes/common/geoip/geoip.inc +146 -159
- includes/common/rules.php +0 -3
- readme.txt +1 -1
- wp-insert.php +4 -4
includes/common/common.php
CHANGED
@@ -6,6 +6,5 @@ require_once(dirname(__FILE__).'/menu.php');
|
|
6 |
require_once(dirname(__FILE__).'/styles.php');
|
7 |
require_once(dirname(__FILE__).'/admin-page.php');
|
8 |
require_once(dirname(__FILE__).'/controls.php');
|
9 |
-
require_once(dirname(__FILE__).'/rules.php');
|
10 |
require_once(dirname(__FILE__).'/jquery.php');
|
11 |
?>
|
6 |
require_once(dirname(__FILE__).'/styles.php');
|
7 |
require_once(dirname(__FILE__).'/admin-page.php');
|
8 |
require_once(dirname(__FILE__).'/controls.php');
|
|
|
9 |
require_once(dirname(__FILE__).'/jquery.php');
|
10 |
?>
|
includes/common/countries.php
CHANGED
@@ -2,13 +2,31 @@
|
|
2 |
$wpInsertGeoLocation = 'DEFAULT';
|
3 |
function wp_insert_countries_init() {
|
4 |
global $wpInsertGeoLocation;
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
}
|
10 |
add_action('init', 'wp_insert_countries_init');
|
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
function wp_insert_get_countries() {
|
13 |
$data = array(
|
14 |
array('value' => 'AP', 'text' => 'Asia/Pacific Region'),
|
2 |
$wpInsertGeoLocation = 'DEFAULT';
|
3 |
function wp_insert_countries_init() {
|
4 |
global $wpInsertGeoLocation;
|
5 |
+
try {
|
6 |
+
if(!class_exists('GeoIP')) {
|
7 |
+
include(WP_INSERT_DIR.'/includes/common/geoip/geoip.inc');
|
8 |
+
}
|
9 |
+
if(function_exists('geoip_open') && function_exists('mb_internal_encoding')) {
|
10 |
+
$geoIP = geoip_open(WP_INSERT_DIR.'/includes/common/geoip/GeoIP.dat', GEOIP_MEMORY_CACHE);
|
11 |
+
$wpInsertGeoLocation = geoip_country_code_by_addr($geoIP, $_SERVER["REMOTE_ADDR"]);
|
12 |
+
geoip_close($geoIP);
|
13 |
+
} else {
|
14 |
+
add_action('admin_notices', 'wp_insert_countries_error_notice', 0);
|
15 |
+
}
|
16 |
+
} catch(Exception $e) {
|
17 |
+
add_action('admin_notices', 'wp_insert_countries_error_notice', 0);
|
18 |
+
}
|
19 |
}
|
20 |
add_action('init', 'wp_insert_countries_init');
|
21 |
|
22 |
+
function wp_insert_countries_error_notice(){
|
23 |
+
if (current_user_can('manage_options')) {
|
24 |
+
echo '<div id="message" class="error"><p>Geo Targeting has encountered an error, Please contact your web master. <b>ERROR DETAILS</b> : Please enable PHP mbstring extension on your server.</p></div>';
|
25 |
+
}
|
26 |
+
remove_action('admin_notices', 'wp_insert_countries_error_notice');
|
27 |
+
}
|
28 |
+
|
29 |
+
|
30 |
function wp_insert_get_countries() {
|
31 |
$data = array(
|
32 |
array('value' => 'AP', 'text' => 'Asia/Pacific Region'),
|
includes/common/geoip/GeoIP.dat
CHANGED
Binary file
|
includes/common/geoip/geoip.inc
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
<?php
|
|
|
2 |
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 2; tab-width: 2 -*- */
|
3 |
/* geoip.inc
|
4 |
*
|
@@ -78,175 +79,161 @@ class GeoIP {
|
|
78 |
var $record_length;
|
79 |
var $shmid;
|
80 |
var $GEOIP_COUNTRY_CODE_TO_NUMBER = array(
|
81 |
-
"" => 0, "AP" => 1, "EU" => 2, "AD" => 3, "AE" => 4, "AF" => 5,
|
82 |
-
"AG" => 6, "AI" => 7, "AL" => 8, "AM" => 9, "
|
83 |
-
"AQ" => 12, "AR" => 13, "AS" => 14, "AT" => 15, "AU" => 16, "AW" => 17,
|
84 |
-
"AZ" => 18, "BA" => 19, "BB" => 20, "BD" => 21, "BE" => 22, "BF" => 23,
|
85 |
-
"BG" => 24, "BH" => 25, "BI" => 26, "BJ" => 27, "BM" => 28, "BN" => 29,
|
86 |
-
"BO" => 30, "BR" => 31, "BS" => 32, "BT" => 33, "BV" => 34, "BW" => 35,
|
87 |
-
"BY" => 36, "BZ" => 37, "CA" => 38, "CC" => 39, "CD" => 40, "CF" => 41,
|
88 |
-
"CG" => 42, "CH" => 43, "CI" => 44, "CK" => 45, "CL" => 46, "CM" => 47,
|
89 |
-
"CN" => 48, "CO" => 49, "CR" => 50, "CU" => 51, "CV" => 52, "CX" => 53,
|
90 |
-
"CY" => 54, "CZ" => 55, "DE" => 56, "DJ" => 57, "DK" => 58, "DM" => 59,
|
91 |
-
"DO" => 60, "DZ" => 61, "EC" => 62, "EE" => 63, "EG" => 64, "EH" => 65,
|
92 |
-
"ER" => 66, "ES" => 67, "ET" => 68, "FI" => 69, "FJ" => 70, "FK" => 71,
|
93 |
-
"FM" => 72, "FO" => 73, "FR" => 74, "
|
94 |
-
"GD" => 78, "GE" => 79, "GF" => 80, "GH" => 81, "GI" => 82, "GL" => 83,
|
95 |
-
"GM" => 84, "GN" => 85, "GP" => 86, "GQ" => 87, "GR" => 88, "GS" => 89,
|
96 |
-
"GT" => 90, "GU" => 91, "GW" => 92, "GY" => 93, "HK" => 94, "HM" => 95,
|
97 |
-
"HN" => 96, "HR" => 97, "HT" => 98, "HU" => 99, "ID" => 100, "IE" => 101,
|
98 |
-
"IL" => 102, "IN" => 103, "IO" => 104, "IQ" => 105, "IR" => 106, "IS" => 107,
|
99 |
-
"IT" => 108, "JM" => 109, "JO" => 110, "JP" => 111, "KE" => 112, "KG" => 113,
|
100 |
-
"KH" => 114, "KI" => 115, "KM" => 116, "KN" => 117, "KP" => 118, "KR" => 119,
|
101 |
-
"KW" => 120, "KY" => 121, "KZ" => 122, "LA" => 123, "LB" => 124, "LC" => 125,
|
102 |
-
"LI" => 126, "LK" => 127, "LR" => 128, "LS" => 129, "LT" => 130, "LU" => 131,
|
103 |
-
"LV" => 132, "LY" => 133, "MA" => 134, "MC" => 135, "MD" => 136, "MG" => 137,
|
104 |
-
"MH" => 138, "MK" => 139, "ML" => 140, "MM" => 141, "MN" => 142, "MO" => 143,
|
105 |
-
"MP" => 144, "MQ" => 145, "MR" => 146, "MS" => 147, "MT" => 148, "MU" => 149,
|
106 |
"MV" => 150, "MW" => 151, "MX" => 152, "MY" => 153, "MZ" => 154, "NA" => 155,
|
107 |
-
"NC" => 156, "NE" => 157, "NF" => 158, "NG" => 159, "NI" => 160, "NL" => 161,
|
108 |
-
"NO" => 162, "NP" => 163, "NR" => 164, "NU" => 165, "NZ" => 166, "OM" => 167,
|
109 |
-
"PA" => 168, "PE" => 169, "PF" => 170, "PG" => 171, "PH" => 172, "PK" => 173,
|
110 |
-
"PL" => 174, "PM" => 175, "PN" => 176, "PR" => 177, "PS" => 178, "PT" => 179,
|
111 |
-
"PW" => 180, "PY" => 181, "QA" => 182, "RE" => 183, "RO" => 184, "RU" => 185,
|
112 |
-
"RW" => 186, "SA" => 187, "SB" => 188, "SC" => 189, "SD" => 190, "SE" => 191,
|
113 |
-
"SG" => 192, "SH" => 193, "SI" => 194, "SJ" => 195, "SK" => 196, "SL" => 197,
|
114 |
-
"SM" => 198, "SN" => 199, "SO" => 200, "SR" => 201, "ST" => 202, "SV" => 203,
|
115 |
-
"SY" => 204, "SZ" => 205, "TC" => 206, "TD" => 207, "TF" => 208, "TG" => 209,
|
116 |
-
"TH" => 210, "TJ" => 211, "TK" => 212, "TM" => 213, "TN" => 214, "TO" => 215,
|
117 |
-
"TL" => 216, "TR" => 217, "TT" => 218, "TV" => 219, "TW" => 220, "TZ" => 221,
|
118 |
-
"UA" => 222, "UG" => 223, "UM" => 224, "US" => 225, "UY" => 226, "UZ" => 227,
|
119 |
"VA" => 228, "VC" => 229, "VE" => 230, "VG" => 231, "VI" => 232, "VN" => 233,
|
120 |
-
"VU" => 234, "WF" => 235, "WS" => 236, "YE" => 237, "YT" => 238, "RS" => 239,
|
121 |
-
"ZA" => 240, "ZM" => 241, "ME" => 242, "ZW" => 243, "A1" => 244, "A2" => 245,
|
122 |
"O1" => 246, "AX" => 247, "GG" => 248, "IM" => 249, "JE" => 250, "BL" => 251,
|
123 |
-
"MF" => 252
|
124 |
);
|
125 |
var $GEOIP_COUNTRY_CODES = array(
|
126 |
-
"",
|
127 |
-
"AR",
|
128 |
-
"
|
129 |
-
"
|
130 |
-
"
|
131 |
-
"
|
132 |
-
"
|
133 |
-
"
|
134 |
-
"
|
135 |
-
"
|
136 |
-
"
|
137 |
-
"
|
138 |
-
"
|
139 |
-
"
|
140 |
-
"
|
141 |
-
"
|
142 |
-
"
|
143 |
-
"
|
144 |
-
"
|
145 |
-
"
|
146 |
-
|
|
|
|
|
|
|
|
|
|
|
147 |
var $GEOIP_COUNTRY_CODES3 = array(
|
148 |
-
"","AP","EU","AND","ARE","AFG","ATG","AIA","ALB","ARM","
|
149 |
-
"
|
150 |
-
"
|
151 |
-
"
|
152 |
-
"
|
153 |
-
"
|
154 |
-
"
|
155 |
-
"
|
156 |
-
"
|
157 |
-
"
|
158 |
-
"
|
159 |
-
"
|
160 |
-
"
|
161 |
-
"
|
162 |
-
"
|
163 |
-
"
|
164 |
-
"
|
165 |
-
"
|
166 |
-
"
|
167 |
-
"
|
168 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
var $GEOIP_COUNTRY_NAMES = array(
|
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 |
-
"Latvia", "Libyan Arab Jamahiriya", "Morocco", "Monaco", "Moldova, Republic of",
|
197 |
-
"Madagascar", "Marshall Islands", "Macedonia",
|
198 |
-
"Mali", "Myanmar", "Mongolia", "Macau", "Northern Mariana Islands",
|
199 |
-
"Martinique", "Mauritania", "Montserrat", "Malta", "Mauritius", "Maldives",
|
200 |
-
"Malawi", "Mexico", "Malaysia", "Mozambique", "Namibia", "New Caledonia",
|
201 |
-
"Niger", "Norfolk Island", "Nigeria", "Nicaragua", "Netherlands", "Norway",
|
202 |
-
"Nepal", "Nauru", "Niue", "New Zealand", "Oman", "Panama", "Peru", "French Polynesia",
|
203 |
-
"Papua New Guinea", "Philippines", "Pakistan", "Poland", "Saint Pierre and Miquelon",
|
204 |
-
"Pitcairn Islands", "Puerto Rico", "Palestinian Territory",
|
205 |
-
"Portugal", "Palau", "Paraguay", "Qatar", "Reunion", "Romania",
|
206 |
-
"Russian Federation", "Rwanda", "Saudi Arabia", "Solomon Islands",
|
207 |
-
"Seychelles", "Sudan", "Sweden", "Singapore", "Saint Helena", "Slovenia",
|
208 |
-
"Svalbard and Jan Mayen", "Slovakia", "Sierra Leone", "San Marino", "Senegal",
|
209 |
-
"Somalia", "Suriname", "Sao Tome and Principe", "El Salvador", "Syrian Arab Republic",
|
210 |
-
"Swaziland", "Turks and Caicos Islands", "Chad", "French Southern Territories",
|
211 |
-
"Togo", "Thailand", "Tajikistan", "Tokelau", "Turkmenistan",
|
212 |
-
"Tunisia", "Tonga", "Timor-Leste", "Turkey", "Trinidad and Tobago", "Tuvalu",
|
213 |
-
"Taiwan", "Tanzania, United Republic of", "Ukraine",
|
214 |
-
"Uganda", "United States Minor Outlying Islands", "United States", "Uruguay",
|
215 |
-
"Uzbekistan", "Holy See (Vatican City State)", "Saint Vincent and the Grenadines",
|
216 |
-
"Venezuela", "Virgin Islands, British", "Virgin Islands, U.S.",
|
217 |
-
"Vietnam", "Vanuatu", "Wallis and Futuna", "Samoa", "Yemen", "Mayotte",
|
218 |
-
"Serbia", "South Africa", "Zambia", "Montenegro", "Zimbabwe",
|
219 |
-
"Anonymous Proxy","Satellite Provider","Other",
|
220 |
-
"Aland Islands","Guernsey","Isle of Man","Jersey","Saint Barthelemy","Saint Martin"
|
221 |
);
|
222 |
|
223 |
var $GEOIP_CONTINENT_CODES = array(
|
224 |
-
"--", "AS",
|
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 |
}
|
1 |
<?php
|
2 |
+
|
3 |
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 2; tab-width: 2 -*- */
|
4 |
/* geoip.inc
|
5 |
*
|
79 |
var $record_length;
|
80 |
var $shmid;
|
81 |
var $GEOIP_COUNTRY_CODE_TO_NUMBER = array(
|
82 |
+
"" => 0, "AP" => 1, "EU" => 2, "AD" => 3, "AE" => 4, "AF" => 5,
|
83 |
+
"AG" => 6, "AI" => 7, "AL" => 8, "AM" => 9, "CW" => 10, "AO" => 11,
|
84 |
+
"AQ" => 12, "AR" => 13, "AS" => 14, "AT" => 15, "AU" => 16, "AW" => 17,
|
85 |
+
"AZ" => 18, "BA" => 19, "BB" => 20, "BD" => 21, "BE" => 22, "BF" => 23,
|
86 |
+
"BG" => 24, "BH" => 25, "BI" => 26, "BJ" => 27, "BM" => 28, "BN" => 29,
|
87 |
+
"BO" => 30, "BR" => 31, "BS" => 32, "BT" => 33, "BV" => 34, "BW" => 35,
|
88 |
+
"BY" => 36, "BZ" => 37, "CA" => 38, "CC" => 39, "CD" => 40, "CF" => 41,
|
89 |
+
"CG" => 42, "CH" => 43, "CI" => 44, "CK" => 45, "CL" => 46, "CM" => 47,
|
90 |
+
"CN" => 48, "CO" => 49, "CR" => 50, "CU" => 51, "CV" => 52, "CX" => 53,
|
91 |
+
"CY" => 54, "CZ" => 55, "DE" => 56, "DJ" => 57, "DK" => 58, "DM" => 59,
|
92 |
+
"DO" => 60, "DZ" => 61, "EC" => 62, "EE" => 63, "EG" => 64, "EH" => 65,
|
93 |
+
"ER" => 66, "ES" => 67, "ET" => 68, "FI" => 69, "FJ" => 70, "FK" => 71,
|
94 |
+
"FM" => 72, "FO" => 73, "FR" => 74, "SX" => 75, "GA" => 76, "GB" => 77,
|
95 |
+
"GD" => 78, "GE" => 79, "GF" => 80, "GH" => 81, "GI" => 82, "GL" => 83,
|
96 |
+
"GM" => 84, "GN" => 85, "GP" => 86, "GQ" => 87, "GR" => 88, "GS" => 89,
|
97 |
+
"GT" => 90, "GU" => 91, "GW" => 92, "GY" => 93, "HK" => 94, "HM" => 95,
|
98 |
+
"HN" => 96, "HR" => 97, "HT" => 98, "HU" => 99, "ID" => 100, "IE" => 101,
|
99 |
+
"IL" => 102, "IN" => 103, "IO" => 104, "IQ" => 105, "IR" => 106, "IS" => 107,
|
100 |
+
"IT" => 108, "JM" => 109, "JO" => 110, "JP" => 111, "KE" => 112, "KG" => 113,
|
101 |
+
"KH" => 114, "KI" => 115, "KM" => 116, "KN" => 117, "KP" => 118, "KR" => 119,
|
102 |
+
"KW" => 120, "KY" => 121, "KZ" => 122, "LA" => 123, "LB" => 124, "LC" => 125,
|
103 |
+
"LI" => 126, "LK" => 127, "LR" => 128, "LS" => 129, "LT" => 130, "LU" => 131,
|
104 |
+
"LV" => 132, "LY" => 133, "MA" => 134, "MC" => 135, "MD" => 136, "MG" => 137,
|
105 |
+
"MH" => 138, "MK" => 139, "ML" => 140, "MM" => 141, "MN" => 142, "MO" => 143,
|
106 |
+
"MP" => 144, "MQ" => 145, "MR" => 146, "MS" => 147, "MT" => 148, "MU" => 149,
|
107 |
"MV" => 150, "MW" => 151, "MX" => 152, "MY" => 153, "MZ" => 154, "NA" => 155,
|
108 |
+
"NC" => 156, "NE" => 157, "NF" => 158, "NG" => 159, "NI" => 160, "NL" => 161,
|
109 |
+
"NO" => 162, "NP" => 163, "NR" => 164, "NU" => 165, "NZ" => 166, "OM" => 167,
|
110 |
+
"PA" => 168, "PE" => 169, "PF" => 170, "PG" => 171, "PH" => 172, "PK" => 173,
|
111 |
+
"PL" => 174, "PM" => 175, "PN" => 176, "PR" => 177, "PS" => 178, "PT" => 179,
|
112 |
+
"PW" => 180, "PY" => 181, "QA" => 182, "RE" => 183, "RO" => 184, "RU" => 185,
|
113 |
+
"RW" => 186, "SA" => 187, "SB" => 188, "SC" => 189, "SD" => 190, "SE" => 191,
|
114 |
+
"SG" => 192, "SH" => 193, "SI" => 194, "SJ" => 195, "SK" => 196, "SL" => 197,
|
115 |
+
"SM" => 198, "SN" => 199, "SO" => 200, "SR" => 201, "ST" => 202, "SV" => 203,
|
116 |
+
"SY" => 204, "SZ" => 205, "TC" => 206, "TD" => 207, "TF" => 208, "TG" => 209,
|
117 |
+
"TH" => 210, "TJ" => 211, "TK" => 212, "TM" => 213, "TN" => 214, "TO" => 215,
|
118 |
+
"TL" => 216, "TR" => 217, "TT" => 218, "TV" => 219, "TW" => 220, "TZ" => 221,
|
119 |
+
"UA" => 222, "UG" => 223, "UM" => 224, "US" => 225, "UY" => 226, "UZ" => 227,
|
120 |
"VA" => 228, "VC" => 229, "VE" => 230, "VG" => 231, "VI" => 232, "VN" => 233,
|
121 |
+
"VU" => 234, "WF" => 235, "WS" => 236, "YE" => 237, "YT" => 238, "RS" => 239,
|
122 |
+
"ZA" => 240, "ZM" => 241, "ME" => 242, "ZW" => 243, "A1" => 244, "A2" => 245,
|
123 |
"O1" => 246, "AX" => 247, "GG" => 248, "IM" => 249, "JE" => 250, "BL" => 251,
|
124 |
+
"MF" => 252, "BQ" => 253,
|
125 |
);
|
126 |
var $GEOIP_COUNTRY_CODES = array(
|
127 |
+
"","AP","EU","AD","AE","AF","AG","AI","AL","AM","CW",
|
128 |
+
"AO","AQ","AR","AS","AT","AU","AW","AZ","BA","BB",
|
129 |
+
"BD","BE","BF","BG","BH","BI","BJ","BM","BN","BO",
|
130 |
+
"BR","BS","BT","BV","BW","BY","BZ","CA","CC","CD",
|
131 |
+
"CF","CG","CH","CI","CK","CL","CM","CN","CO","CR",
|
132 |
+
"CU","CV","CX","CY","CZ","DE","DJ","DK","DM","DO",
|
133 |
+
"DZ","EC","EE","EG","EH","ER","ES","ET","FI","FJ",
|
134 |
+
"FK","FM","FO","FR","SX","GA","GB","GD","GE","GF",
|
135 |
+
"GH","GI","GL","GM","GN","GP","GQ","GR","GS","GT",
|
136 |
+
"GU","GW","GY","HK","HM","HN","HR","HT","HU","ID",
|
137 |
+
"IE","IL","IN","IO","IQ","IR","IS","IT","JM","JO",
|
138 |
+
"JP","KE","KG","KH","KI","KM","KN","KP","KR","KW",
|
139 |
+
"KY","KZ","LA","LB","LC","LI","LK","LR","LS","LT",
|
140 |
+
"LU","LV","LY","MA","MC","MD","MG","MH","MK","ML",
|
141 |
+
"MM","MN","MO","MP","MQ","MR","MS","MT","MU","MV",
|
142 |
+
"MW","MX","MY","MZ","NA","NC","NE","NF","NG","NI",
|
143 |
+
"NL","NO","NP","NR","NU","NZ","OM","PA","PE","PF",
|
144 |
+
"PG","PH","PK","PL","PM","PN","PR","PS","PT","PW",
|
145 |
+
"PY","QA","RE","RO","RU","RW","SA","SB","SC","SD",
|
146 |
+
"SE","SG","SH","SI","SJ","SK","SL","SM","SN","SO",
|
147 |
+
"SR","ST","SV","SY","SZ","TC","TD","TF","TG","TH",
|
148 |
+
"TJ","TK","TM","TN","TO","TL","TR","TT","TV","TW",
|
149 |
+
"TZ","UA","UG","UM","US","UY","UZ","VA","VC","VE",
|
150 |
+
"VG","VI","VN","VU","WF","WS","YE","YT","RS","ZA",
|
151 |
+
"ZM","ME","ZW","A1","A2","O1","AX","GG","IM","JE",
|
152 |
+
"BL","MF", "BQ");
|
153 |
var $GEOIP_COUNTRY_CODES3 = array(
|
154 |
+
"","AP","EU","AND","ARE","AFG","ATG","AIA","ALB","ARM","CUW",
|
155 |
+
"AGO","ATA","ARG","ASM","AUT","AUS","ABW","AZE","BIH","BRB",
|
156 |
+
"BGD","BEL","BFA","BGR","BHR","BDI","BEN","BMU","BRN","BOL",
|
157 |
+
"BRA","BHS","BTN","BVT","BWA","BLR","BLZ","CAN","CCK","COD",
|
158 |
+
"CAF","COG","CHE","CIV","COK","CHL","CMR","CHN","COL","CRI",
|
159 |
+
"CUB","CPV","CXR","CYP","CZE","DEU","DJI","DNK","DMA","DOM",
|
160 |
+
"DZA","ECU","EST","EGY","ESH","ERI","ESP","ETH","FIN","FJI",
|
161 |
+
"FLK","FSM","FRO","FRA","SXM","GAB","GBR","GRD","GEO","GUF",
|
162 |
+
"GHA","GIB","GRL","GMB","GIN","GLP","GNQ","GRC","SGS","GTM",
|
163 |
+
"GUM","GNB","GUY","HKG","HMD","HND","HRV","HTI","HUN","IDN",
|
164 |
+
"IRL","ISR","IND","IOT","IRQ","IRN","ISL","ITA","JAM","JOR",
|
165 |
+
"JPN","KEN","KGZ","KHM","KIR","COM","KNA","PRK","KOR","KWT",
|
166 |
+
"CYM","KAZ","LAO","LBN","LCA","LIE","LKA","LBR","LSO","LTU",
|
167 |
+
"LUX","LVA","LBY","MAR","MCO","MDA","MDG","MHL","MKD","MLI",
|
168 |
+
"MMR","MNG","MAC","MNP","MTQ","MRT","MSR","MLT","MUS","MDV",
|
169 |
+
"MWI","MEX","MYS","MOZ","NAM","NCL","NER","NFK","NGA","NIC",
|
170 |
+
"NLD","NOR","NPL","NRU","NIU","NZL","OMN","PAN","PER","PYF",
|
171 |
+
"PNG","PHL","PAK","POL","SPM","PCN","PRI","PSE","PRT","PLW",
|
172 |
+
"PRY","QAT","REU","ROU","RUS","RWA","SAU","SLB","SYC","SDN",
|
173 |
+
"SWE","SGP","SHN","SVN","SJM","SVK","SLE","SMR","SEN","SOM",
|
174 |
+
"SUR","STP","SLV","SYR","SWZ","TCA","TCD","ATF","TGO","THA",
|
175 |
+
"TJK","TKL","TKM","TUN","TON","TLS","TUR","TTO","TUV","TWN",
|
176 |
+
"TZA","UKR","UGA","UMI","USA","URY","UZB","VAT","VCT","VEN",
|
177 |
+
"VGB","VIR","VNM","VUT","WLF","WSM","YEM","MYT","SRB","ZAF",
|
178 |
+
"ZMB","MNE","ZWE","A1","A2","O1","ALA","GGY","IMN","JEY",
|
179 |
+
"BLM","MAF", "BES"
|
180 |
+
);
|
181 |
var $GEOIP_COUNTRY_NAMES = array(
|
182 |
+
"","Asia/Pacific Region","Europe","Andorra","United Arab Emirates","Afghanistan","Antigua and Barbuda","Anguilla","Albania","Armenia","Curacao",
|
183 |
+
"Angola","Antarctica","Argentina","American Samoa","Austria","Australia","Aruba","Azerbaijan","Bosnia and Herzegovina","Barbados",
|
184 |
+
"Bangladesh","Belgium","Burkina Faso","Bulgaria","Bahrain","Burundi","Benin","Bermuda","Brunei Darussalam","Bolivia",
|
185 |
+
"Brazil","Bahamas","Bhutan","Bouvet Island","Botswana","Belarus","Belize","Canada","Cocos (Keeling) Islands","Congo, The Democratic Republic of the",
|
186 |
+
"Central African Republic","Congo","Switzerland","Cote D'Ivoire","Cook Islands","Chile","Cameroon","China","Colombia","Costa Rica",
|
187 |
+
"Cuba","Cape Verde","Christmas Island","Cyprus","Czech Republic","Germany","Djibouti","Denmark","Dominica","Dominican Republic",
|
188 |
+
"Algeria","Ecuador","Estonia","Egypt","Western Sahara","Eritrea","Spain","Ethiopia","Finland","Fiji",
|
189 |
+
"Falkland Islands (Malvinas)","Micronesia, Federated States of","Faroe Islands","France","Sint Maarten (Dutch part)","Gabon","United Kingdom","Grenada","Georgia","French Guiana",
|
190 |
+
"Ghana","Gibraltar","Greenland","Gambia","Guinea","Guadeloupe","Equatorial Guinea","Greece","South Georgia and the South Sandwich Islands","Guatemala",
|
191 |
+
"Guam","Guinea-Bissau","Guyana","Hong Kong","Heard Island and McDonald Islands","Honduras","Croatia","Haiti","Hungary","Indonesia",
|
192 |
+
"Ireland","Israel","India","British Indian Ocean Territory","Iraq","Iran, Islamic Republic of","Iceland","Italy","Jamaica","Jordan",
|
193 |
+
"Japan","Kenya","Kyrgyzstan","Cambodia","Kiribati","Comoros","Saint Kitts and Nevis","Korea, Democratic People's Republic of","Korea, Republic of","Kuwait",
|
194 |
+
"Cayman Islands","Kazakhstan","Lao People's Democratic Republic","Lebanon","Saint Lucia","Liechtenstein","Sri Lanka","Liberia","Lesotho","Lithuania",
|
195 |
+
"Luxembourg","Latvia","Libya","Morocco","Monaco","Moldova, Republic of","Madagascar","Marshall Islands","Macedonia","Mali",
|
196 |
+
"Myanmar","Mongolia","Macau","Northern Mariana Islands","Martinique","Mauritania","Montserrat","Malta","Mauritius","Maldives",
|
197 |
+
"Malawi","Mexico","Malaysia","Mozambique","Namibia","New Caledonia","Niger","Norfolk Island","Nigeria","Nicaragua",
|
198 |
+
"Netherlands","Norway","Nepal","Nauru","Niue","New Zealand","Oman","Panama","Peru","French Polynesia",
|
199 |
+
"Papua New Guinea","Philippines","Pakistan","Poland","Saint Pierre and Miquelon","Pitcairn Islands","Puerto Rico","Palestinian Territory","Portugal","Palau",
|
200 |
+
"Paraguay","Qatar","Reunion","Romania","Russian Federation","Rwanda","Saudi Arabia","Solomon Islands","Seychelles","Sudan",
|
201 |
+
"Sweden","Singapore","Saint Helena","Slovenia","Svalbard and Jan Mayen","Slovakia","Sierra Leone","San Marino","Senegal","Somalia","Suriname",
|
202 |
+
"Sao Tome and Principe","El Salvador","Syrian Arab Republic","Swaziland","Turks and Caicos Islands","Chad","French Southern Territories","Togo","Thailand",
|
203 |
+
"Tajikistan","Tokelau","Turkmenistan","Tunisia","Tonga","Timor-Leste","Turkey","Trinidad and Tobago","Tuvalu","Taiwan",
|
204 |
+
"Tanzania, United Republic of","Ukraine","Uganda","United States Minor Outlying Islands","United States","Uruguay","Uzbekistan","Holy See (Vatican City State)","Saint Vincent and the Grenadines","Venezuela",
|
205 |
+
"Virgin Islands, British","Virgin Islands, U.S.","Vietnam","Vanuatu","Wallis and Futuna","Samoa","Yemen","Mayotte","Serbia","South Africa",
|
206 |
+
"Zambia","Montenegro","Zimbabwe","Anonymous Proxy","Satellite Provider","Other","Aland Islands","Guernsey","Isle of Man","Jersey",
|
207 |
+
"Saint Barthelemy","Saint Martin", "Bonaire, Saint Eustatius and Saba"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
);
|
209 |
|
210 |
var $GEOIP_CONTINENT_CODES = array(
|
211 |
+
"--", "AS","EU","EU","AS","AS","NA","NA","EU","AS","NA",
|
212 |
+
"AF","AN","SA","OC","EU","OC","NA","AS","EU","NA",
|
213 |
+
"AS","EU","AF","EU","AS","AF","AF","NA","AS","SA",
|
214 |
+
"SA","NA","AS","AN","AF","EU","NA","NA","AS","AF",
|
215 |
+
"AF","AF","EU","AF","OC","SA","AF","AS","SA","NA",
|
216 |
+
"NA","AF","AS","AS","EU","EU","AF","EU","NA","NA",
|
217 |
+
"AF","SA","EU","AF","AF","AF","EU","AF","EU","OC",
|
218 |
+
"SA","OC","EU","EU","NA","AF","EU","NA","AS","SA",
|
219 |
+
"AF","EU","NA","AF","AF","NA","AF","EU","AN","NA",
|
220 |
+
"OC","AF","SA","AS","AN","NA","EU","NA","EU","AS",
|
221 |
+
"EU","AS","AS","AS","AS","AS","EU","EU","NA","AS",
|
222 |
+
"AS","AF","AS","AS","OC","AF","NA","AS","AS","AS",
|
223 |
+
"NA","AS","AS","AS","NA","EU","AS","AF","AF","EU",
|
224 |
+
"EU","EU","AF","AF","EU","EU","AF","OC","EU","AF",
|
225 |
+
"AS","AS","AS","OC","NA","AF","NA","EU","AF","AS",
|
226 |
+
"AF","NA","AS","AF","AF","OC","AF","OC","AF","NA",
|
227 |
+
"EU","EU","AS","OC","OC","OC","AS","NA","SA","OC",
|
228 |
+
"OC","AS","AS","EU","NA","OC","NA","AS","EU","OC",
|
229 |
+
"SA","AS","AF","EU","EU","AF","AS","OC","AF","AF",
|
230 |
+
"EU","AS","AF","EU","EU","EU","AF","EU","AF","AF",
|
231 |
+
"SA","AF","NA","AS","AF","NA","AF","AN","AF","AS",
|
232 |
+
"AS","OC","AS","AF","OC","AS","EU","NA","OC","AS",
|
233 |
+
"AF","EU","AF","OC","NA","SA","AS","EU","NA","SA",
|
234 |
+
"NA","NA","AS","OC","OC","OC","AS","AF","EU","AF",
|
235 |
+
"AF","EU","AF","--","--","--","EU","EU","EU","EU",
|
236 |
+
"NA","NA","NA"
|
237 |
);
|
238 |
|
239 |
}
|
includes/common/rules.php
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
?>
|
|
|
|
|
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:www.wp-insert.smartlogix.co.in/support
|
|
4 |
Tags: adsense,google,widget,post,admin,plugin,ads,in post ads,feed logo,smartlogix,ads in feeds,analytics,google analytics,header,footer,ad management,advertisements,content,ad,advertising,privacy policy,privacy,policy,automatic privacy policy,blog,feed,feeds,formatting,html,javascript,manage,post,posts,seo,sidebar,widget,widgets,wordpress,tracking,syntex highlighter,highlighting,theme tools,plugin tools,developer tools,highlighting,theme editor,plugin editor,middle ad,ad filtration,pagewise ad filtration,template ads,ad tags,adbrite ads,adsense ready,easy adsense,adsense optimized,terms and conditions,terms,conditions,automatic terms and conditions
|
5 |
Requires at least: 3.2
|
6 |
Tested up to: 3.4.2
|
7 |
-
Stable tag: 2.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
4 |
Tags: adsense,google,widget,post,admin,plugin,ads,in post ads,feed logo,smartlogix,ads in feeds,analytics,google analytics,header,footer,ad management,advertisements,content,ad,advertising,privacy policy,privacy,policy,automatic privacy policy,blog,feed,feeds,formatting,html,javascript,manage,post,posts,seo,sidebar,widget,widgets,wordpress,tracking,syntex highlighter,highlighting,theme tools,plugin tools,developer tools,highlighting,theme editor,plugin editor,middle ad,ad filtration,pagewise ad filtration,template ads,ad tags,adbrite ads,adsense ready,easy adsense,adsense optimized,terms and conditions,terms,conditions,automatic terms and conditions
|
5 |
Requires at least: 3.2
|
6 |
Tested up to: 3.4.2
|
7 |
+
Stable tag: 2.0.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
wp-insert.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Plugin Name:
|
4 |
Plugin URI: http://www.wp-insert.smartlogix.co.in/
|
5 |
-
Description: The ultimate wordpress plugin
|
6 |
-
Version: 2.0
|
7 |
Author: Namith Jawahar
|
8 |
Author URI: http://www.smartlogix.co.in/
|
9 |
WP-INSERT by SMARTLOGIX : The ultimate wordpress plugin
|
@@ -31,7 +31,7 @@ if(!defined('WP_INSERT_URL'))
|
|
31 |
if(!defined('WP_INSERT_DIR'))
|
32 |
define('WP_INSERT_DIR',WP_PLUGIN_DIR.'/wp-insert');
|
33 |
if(!defined('WP_INSERT_VERSION'))
|
34 |
-
define('WP_INSERT_VERSION', '2.0');
|
35 |
/*Includes*/
|
36 |
require_once (dirname(__FILE__).'/includes/includes.php');
|
37 |
?>
|
1 |
<?php
|
2 |
/*
|
3 |
+
Plugin Name: Wp-Insert
|
4 |
Plugin URI: http://www.wp-insert.smartlogix.co.in/
|
5 |
+
Description: WP-INSERT by SMARTLOGIX : The ultimate wordpress plugin
|
6 |
+
Version: 2.0.1
|
7 |
Author: Namith Jawahar
|
8 |
Author URI: http://www.smartlogix.co.in/
|
9 |
WP-INSERT by SMARTLOGIX : The ultimate wordpress plugin
|
31 |
if(!defined('WP_INSERT_DIR'))
|
32 |
define('WP_INSERT_DIR',WP_PLUGIN_DIR.'/wp-insert');
|
33 |
if(!defined('WP_INSERT_VERSION'))
|
34 |
+
define('WP_INSERT_VERSION', '2.0.1');
|
35 |
/*Includes*/
|
36 |
require_once (dirname(__FILE__).'/includes/includes.php');
|
37 |
?>
|