2016-11-28 21:52:15 -08:00

286 lines
13 KiB
PHP

<?php
if( $wps_nonce_valid ) {
$wps_option_list = array('wps_geoip','wps_update_geoip','wps_schedule_geoip','wps_auto_pop','wps_private_country_code','wps_browscap','wps_update_browscap','wps_schedule_browscap','wps_referrerspam','wps_update_referrerspam','wps_schedule_referrerspam');
// For country codes we always use upper case, otherwise default to 000 which is 'unknown'.
if( array_key_exists( 'wps_private_country_code', $_POST ) ) {
$_POST['wps_private_country_code'] = trim( strtoupper( $_POST['wps_private_country_code'] ) );
}
else {
$_POST['wps_private_country_code'] = '000';
}
if( $_POST['wps_private_country_code'] == '' ) { $_POST['wps_private_country_code'] = '000'; }
foreach( $wps_option_list as $option ) {
$new_option = str_replace( "wps_", "", $option );
if( array_key_exists( $option, $_POST ) ) { $value = $_POST[$option]; } else { $value = ''; }
$WP_Statistics->store_option($new_option, $value);
}
// If we're focing the download of the browscap.ini file, make sure to flush the last download time from the options.
if( array_key_exists( 'wps_update_browscap', $_POST ) ) {
$WP_Statistics->store_option('last_browscap_dl', 0);
}
}
?>
<table class="form-table">
<tbody>
<tr valign="top">
<th scope="row" colspan="2"><h3><?php _e('GeoIP settings', 'wp_statistics'); ?></h3></th>
</tr>
<tr valign="top">
<th scope="row" colspan="2">
<?php echo sprintf(__('IP location services provided by GeoLite2 data created by MaxMind, available from %s.', 'wp_statistics'), '<a href="http://www.maxmind.com" target=_blank>http://www.maxmind.com</a>'); ?>
</th>
</tr>
<?php
if( wp_statistics_geoip_supported() )
{
?>
<tr valign="top">
<th scope="row">
<label for="geoip-enable"><?php _e('GeoIP collection', 'wp_statistics'); ?>:</label>
</th>
<td>
<input id="geoip-enable" type="checkbox" name="wps_geoip" <?php echo $WP_Statistics->get_option('geoip')==true? "checked='checked'":'';?>>
<label for="geoip-enable"><?php _e('Active', 'wp_statistics'); ?></label>
<p class="description"><?php _e('For get more information and location (country) from visitor, enable this feature.', 'wp_statistics'); ?></p>
</td>
</tr>
<tr valign="top">
<th scope="row">
<label for="geoip-update"><?php _e('Update GeoIP Info', 'wp_statistics'); ?>:</label>
</th>
<td>
<input id="geoip-update" type="checkbox" name="wps_update_geoip" <?php echo $WP_Statistics->get_option('update_geoip')==true? "checked='checked'":'';?>>
<label for="geoip-update"><?php _e('Download GeoIP Database', 'wp_statistics'); ?></label>
<p class="description"><?php _e('Save changes on this page to download the update.', 'wp_statistics'); ?></p>
</td>
</tr>
<tr valign="top">
<th scope="row">
<label for="geoip-schedule"><?php _e('Schedule monthly update of GeoIP DB', 'wp_statistics'); ?>:</label>
</th>
<td>
<input id="geoip-schedule" type="checkbox" name="wps_schedule_geoip" <?php echo $WP_Statistics->get_option('schedule_geoip')==true? "checked='checked'":'';?>>
<label for="geoip-schedule"><?php _e('Active', 'wp_statistics'); ?></label>
<?php
if( $WP_Statistics->get_option('schedule_geoip') ) {
echo '<p class="description">' . __('Next update will be') .': <code>';
$last_update = $WP_Statistics->get_option('last_geoip_dl');
$this_month = strtotime('First Tuesday of this month');
if( $last_update > $this_month ) { $next_update = strtotime('First Tuesday of next month') + (86400 * 2);}
else { $next_update = $this_month + (86400 * 2); }
$next_schedule = wp_next_scheduled('wp_statistics_geoip_hook');
if( $next_schedule ) {
echo $WP_Statistics->Local_Date( get_option('date_format'), $next_update ) . ' @ ' . $WP_Statistics->Local_Date( get_option('time_format'), $next_schedule );
} else {
echo $WP_Statistics->Local_Date( get_option('date_format'), $next_update ) . ' @ ' . $WP_Statistics->Local_Date( get_option('time_format'), time() );
}
echo '</code></p>';
}
?>
<p class="description"><?php _e('Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month.', 'wp_statistics'); ?></p>
<p class="description"><?php _e('This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place).', 'wp_statistics'); ?></p>
</td>
</tr>
<tr valign="top">
<th scope="row">
<label for="geoip-schedule"><?php _e('Populate missing GeoIP after update of GeoIP DB', 'wp_statistics'); ?>:</label>
</th>
<td>
<input id="geoip-auto-pop" type="checkbox" name="wps_auto_pop" <?php echo $WP_Statistics->get_option('auto_pop')==true? "checked='checked'":'';?>>
<label for="geoip-auto-pop"><?php _e('Active', 'wp_statistics'); ?></label>
<p class="description"><?php _e('Update any missing GeoIP data after downloading a new database.', 'wp_statistics'); ?></p>
</td>
</tr>
<tr valign="top">
<th scope="row">
<label for="geoip-schedule"><?php _e('Country code for private IP addresses', 'wp_statistics'); ?>:</label>
</th>
<td>
<input type="text" size="3" id="geoip-private-country-code" name="wps_private_country_code" value="<?php echo htmlentities( $WP_Statistics->get_option('private_country_code', '000'), ENT_QUOTES );?>">
<p class="description"><?php _e('The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use "000" (three zeros) to use "Unknown" as the country code.', 'wp_statistics'); ?></p>
</td>
</tr>
<?php
}
else
{
?>
<tr valign="top">
<th scope="row" colspan="2">
<?php
echo __('GeoIP collection is disabled due to the following reasons:', 'wp_statistics') . '<br><br>';
if( !version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') ) {
printf( '&nbsp;&nbsp;&nbsp;&nbsp;* ' . __('GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being ', 'wp_statistics'), '<code>' . WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION . '</code>' ); echo '<code>' . phpversion() . '</code>.<br>';
}
if( !function_exists('curl_init') ) {
echo '<br>&nbsp;&nbsp;&nbsp;&nbsp;* ';
_e('GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!','wp_statistics');
echo '<br>';
}
if( !function_exists('bcadd') ) {
echo '<br>&nbsp;&nbsp;&nbsp;&nbsp;* ';
_e('GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!','wp_statistics');
echo '<br>';
}
if( ini_get('safe_mode') ) {
echo '<br>&nbsp;&nbsp;&nbsp;&nbsp;* ';
_e('PHP safe mode detected! GeoIP collection is not supported with PHP\'s safe mode enabled!','wp_statistics');
echo '<br>';
}
?>
</th>
</tr>
<?php
} ?>
<tr valign="top">
<th scope="row" colspan="2"><h3><?php _e('browscap settings', 'wp_statistics'); ?></h3></th>
</tr>
<tr valign="top">
<th scope="row">
<label for="browscap-enable"><?php _e('browscap usage', 'wp_statistics'); ?>:</label>
</th>
<td>
<input id="browscap-enable" type="checkbox" name="wps_browscap" <?php echo $WP_Statistics->get_option('browscap')==true? "checked='checked'":'';?>>
<label for="browscap-enable"><?php _e('Active', 'wp_statistics'); ?></label>
<p class="description"><?php _e('The browscap database will be downloaded and used to detect robots.', 'wp_statistics'); ?></p>
</td>
</tr>
<tr valign="top">
<th scope="row">
<label for="browscap-update"><?php _e('Update browscap Info', 'wp_statistics'); ?>:</label>
</th>
<td>
<input id="browscap-update" type="checkbox" name="wps_update_browscap" <?php echo $WP_Statistics->get_option('update_browscap')==true? "checked='checked'":'';?>>
<label for="browscap-update"><?php _e('Download browscap Database', 'wp_statistics'); ?></label>
<p class="description"><?php _e('Save changes on this page to download the update.', 'wp_statistics'); ?></p>
</td>
</tr>
<tr valign="top">
<th scope="row">
<label for="browscap-schedule"><?php _e('Schedule weekly update of browscap DB', 'wp_statistics'); ?>:</label>
</th>
<td>
<input id="browscap-schedule" type="checkbox" name="wps_schedule_browscap" <?php echo $WP_Statistics->get_option('schedule_browscap')==true? "checked='checked'":'';?>>
<label for="browscap-schedule"><?php _e('Active', 'wp_statistics'); ?></label>
<?php
if( $WP_Statistics->get_option('schedule_browscap') ) {
echo '<p class="description">' . __('Next update will be') .': <code>';
$last_update = $WP_Statistics->get_option('last_browscap_dl');
if( $last_update == 0 ) { $last_update = time(); }
$next_update = $last_update + (86400 * 7);
$next_schedule = wp_next_scheduled('wp_statistics_browscap_hook');
if( $next_schedule ) {
echo date( get_option('date_format'), $next_schedule ) . ' @ ' . date( get_option('time_format'), $next_schedule );
} else {
echo date( get_option('date_format'), $next_update ) . ' @ ' . date( get_option('time_format'), time() );
}
echo '</code></p>';
}
?>
<p class="description"><?php _e('Download of the browscap database will be scheduled for once a week.', 'wp_statistics'); ?></p>
</td>
</tr>
<tr valign="top">
<th scope="row" colspan="2"><h3><?php _e('Piwik Referrer Spam Blacklist settings', 'wp_statistics'); ?></h3></th>
</tr>
<tr valign="top">
<th scope="row" colspan="2">
<?php echo sprintf(__('Referrer spam blacklist is provided by Piwik, available from %s.', 'wp_statistics'), '<a href="https://github.com/piwik/referrer-spam-blacklist" target=_blank>https://github.com/piwik/referrer-spam-blacklist</a>'); ?>
</th>
</tr>
<tr valign="top">
<th scope="row">
<label for="referrerspam-enable"><?php _e('Piwik Referrer Spam Blacklist usage', 'wp_statistics'); ?>:</label>
</th>
<td>
<input id="referrerspam-enable" type="checkbox" name="wps_referrerspam" <?php echo $WP_Statistics->get_option('referrerspam')==true? "checked='checked'":'';?>>
<label for="referrerspam-enable"><?php _e('Active', 'wp_statistics'); ?></label>
<p class="description"><?php _e('The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam.', 'wp_statistics'); ?></p>
</td>
</tr>
<tr valign="top">
<th scope="row">
<label for="geoip-update"><?php _e('Update Piwik Referrer Spam Blacklist Info', 'wp_statistics'); ?>:</label>
</th>
<td>
<input id="referrerspam-update" type="checkbox" name="wps_update_referrerspam" <?php echo $WP_Statistics->get_option('update_referrerspam')==true? "checked='checked'":'';?>>
<label for="referrerspam-update"><?php _e('Download Piwik Referrer Spam Blacklist Database', 'wp_statistics'); ?></label>
<p class="description"><?php _e('Save changes on this page to download the update.', 'wp_statistics'); ?></p>
</td>
</tr>
<tr valign="top">
<th scope="row">
<label for="referrerspam-schedule"><?php _e('Schedule weekly update of Piwik Referrer Spam Blacklist DB', 'wp_statistics'); ?>:</label>
</th>
<td>
<input id="referrerspam-schedule" type="checkbox" name="wps_schedule_referrerspam" <?php echo $WP_Statistics->get_option('schedule_referrerspam')==true? "checked='checked'":'';?>>
<label for="referrerspam-schedule"><?php _e('Active', 'wp_statistics'); ?></label>
<?php
if( $WP_Statistics->get_option('schedule_referrerspam') ) {
echo '<p class="description">' . __('Next update will be') .': <code>';
$last_update = $WP_Statistics->get_option('schedule_referrerspam');
if( $last_update == 0 ) { $last_update = time(); }
$next_update = $last_update + (86400 * 7);
$next_schedule = wp_next_scheduled('wp_statistics_referrerspam_hook');
if( $next_schedule ) {
echo date( get_option('date_format'), $next_schedule ) . ' @ ' . date( get_option('time_format'), $next_schedule );
} else {
echo date( get_option('date_format'), $next_update ) . ' @ ' . date( get_option('time_format'), time() );
}
echo '</code></p>';
}
?>
<p class="description"><?php _e('Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week.', 'wp_statistics'); ?></p>
</td>
</tr>
</tbody>
</table>
<?php submit_button(__('Update', 'wp_statistics'), 'primary', 'submit'); ?>