| Server IP : 68.183.124.220 / Your IP : 216.73.217.137 Web Server : Apache/2.4.18 (Ubuntu) System : Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : gavin ( 1000) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/wp-statistics/includes/settings/tabs/ |
Upload File : |
<?php
if ( $wps_nonce_valid ) {
$wps_option_list = array( 'wps_disable_map', 'wps_disable_dashboard', 'wps_disable_editor' );
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 );
}
}
// Only display the global options if the user is an administrator.
if ( $wps_admin ) {
?>
<table class="form-table">
<tbody>
<tr valign="top">
<th scope="row" colspan="2"><h3><?php _e( 'Dashboard', 'wp-statistics' ); ?></h3></th>
</tr>
<tr valign="top">
<td scope="row" colspan="2"><?php _e(
'The following items are global to all users.',
'wp-statistics'
); ?></td>
</tr>
<tr valign="top">
<th scope="row">
<label for="disable-map"><?php _e( 'Disable dashboard widgets:', 'wp-statistics' ); ?></label>
</th>
<td>
<input id="disable-dashboard" type="checkbox" value="1"
name="wps_disable_dashboard" <?php echo $WP_Statistics->get_option( 'disable_dashboard' ) == true
? "checked='checked'" : ''; ?>>
<label for="disable-dashboard"><?php _e( 'Disable', 'wp-statistics' ); ?></label>
<p class="description"><?php _e( 'Disable the dashboard widgets.', 'wp-statistics' ); ?></p>
</td>
</tr>
<tr valign="top">
<th scope="row" colspan="2"><h3><?php _e( 'Page/Post Editor', 'wp-statistics' ); ?></h3></th>
</tr>
<tr valign="top">
<td scope="row" colspan="2"><?php _e(
'The following items are global to all users.',
'wp-statistics'
); ?></td>
</tr>
<tr valign="top">
<th scope="row">
<label for="disable-map"><?php _e( 'Disable post/page editor widget:', 'wp-statistics' ); ?></label>
</th>
<td>
<input id="disable-editor" type="checkbox" value="1"
name="wps_disable_editor" <?php echo $WP_Statistics->get_option( 'disable_editor' ) == true
? "checked='checked'" : ''; ?>>
<label for="disable-editor"><?php _e( 'Disable', 'wp-statistics' ); ?></label>
<p class="description"><?php _e( 'Disable the page/post editor widget.', 'wp-statistics' ); ?></p>
</td>
</tr>
<tr valign="top">
<th scope="row" colspan="2"><h3><?php _e( 'Map', 'wp-statistics' ); ?></h3></th>
</tr>
<tr valign="top">
<td scope="row" colspan="2"><?php _e(
'The following items are global to all users.',
'wp-statistics'
); ?></td>
</tr>
<tr valign="top">
<th scope="row">
<label for="disable-map"><?php _e( 'Disable map:', 'wp-statistics' ); ?></label>
</th>
<td>
<input id="disable-map" type="checkbox" value="1"
name="wps_disable_map" <?php echo $WP_Statistics->get_option( 'disable_map' ) == true
? "checked='checked'" : ''; ?>>
<label for="disable-map"><?php _e( 'Disable', 'wp-statistics' ); ?></label>
<p class="description"><?php _e( 'Disable the map display', 'wp-statistics' ); ?></p>
</td>
</tr>
</tbody>
</table>
<?php
}
submit_button( __( 'Update', 'wp-statistics' ), 'primary', 'submit' );