403Webshell
Server IP : 213.186.33.2  /  Your IP : 216.73.216.39
Web Server : Apache
System : Linux webm005.cluster102.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User : symetry ( 21728)
PHP Version : 8.2.31
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/symetry/www/ARCHIVES/web/wp-content/plugins/adminimize/inc-options/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/symetry/www/ARCHIVES/web/wp-content/plugins/adminimize/inc-options/theme_options.php
<?php
/**
 * @package Adminimize
 * @subpackage Backend Theme options
 * @author Frank Bültge
 */
if ( ! function_exists( 'add_action' ) ) {
	echo "Hi there!  I'm just a part of plugin, not much I can do when called directly.";
	exit;
}
?>
		<div id="poststuff" class="ui-sortable meta-box-sortables">
			<div class="postbox">
				<div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
				<h3 class="hndle" id="set_theme"><?php _e('Set Theme', FB_ADMINIMIZE_TEXTDOMAIN ) ?></h3>
				<div class="inside">
					<br class="clear" />
					
					<?php if ( ! isset($_POST['_mw_adminimize_action']) || !($_POST['_mw_adminimize_action'] == '_mw_adminimize_load_theme') ) { ?>
					<form name="set_theme" method="post" id="_mw_adminimize_set_theme" action="?page=<?php echo esc_attr( $_GET['page'] ); ?>" >
							<?php wp_nonce_field('mw_adminimize_nonce'); ?>
							<p><?php _e('For better peformance with many users on your blog; load only userlist, when you will change the theme options for users.', FB_ADMINIMIZE_TEXTDOMAIN ); ?></p>
							<p id="submitbutton">
								<input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_load_theme" />
								<input type="submit" name="_mw_adminimize_load" value="<?php _e('Load User Data', FB_ADMINIMIZE_TEXTDOMAIN ); ?> &raquo;" class="button button-primary" />
							</p>
					</form>
					<?php }
					if (  isset($_POST['_mw_adminimize_action']) && ($_POST['_mw_adminimize_action'] == '_mw_adminimize_load_theme') ) { ?>
						<form name="set_theme" method="post" id="_mw_adminimize_set_theme" action="?page=<?php echo esc_attr( $_GET['page'] ); ?>" >
							<?php wp_nonce_field('mw_adminimize_nonce'); ?>
							<table class="widefat">
								<thead>
									<tr class="thead">
										<th>&nbsp;</th>
										<th class="num"><?php _e('User-ID') ?></th>
										<th><?php _e('Username') ?></th>
										<th><?php _e('Display name publicly as') ?></th>
										<th><?php _e('Admin-Color Scheme') ?></th>
										<th><?php _e('User Level') ?></th>
										<th><?php _e('Role') ?></th>
									</tr>
								</thead>
								<tbody id="users" class="list:user user-list">
									<?php
									$wp_user_search = $wpdb->get_results("SELECT ID, user_login, display_name FROM $wpdb->users ORDER BY ID");
	
									$style = '';
									foreach ( $wp_user_search as $userid ) {
										$user_id       = (int) $userid->ID;
										$user_login    = stripslashes($userid->user_login);
										$display_name  = stripslashes($userid->display_name);
										$current_color = get_user_option('admin_color', $user_id);
										$user_level    = (int) get_user_option($table_prefix . 'user_level', $user_id);
										$user_object   = new WP_User($user_id);
										$roles         = $user_object->roles;
										$role          = array_shift($roles);
										if ( function_exists('translate_user_role') )
											$role_name   = translate_user_role( $wp_roles->role_names[$role] );
										elseif ( function_exists('before_last_bar') )
											$role_name   = before_last_bar( $wp_roles->role_names[$role], 'User role' );
										else
											$role_name   = strrpos( $wp_roles->role_names[$role], '|' );
										
										$style = ( ' class="alternate"' == $style ) ? '' : ' class="alternate"';
										$return  = '';
										$return .= '<tr>' . "\n";
										$return .= "\t" . '<td><input type="checkbox" name="mw_adminimize_theme_items[]" value="' . $user_id . '" /></td>' . "\n";
										$return .= "\t" . '<td class="num">'. $user_id .'</td>' . "\n";
										$return .= "\t" . '<td>'. $user_login .'</td>' . "\n";
										$return .= "\t" . '<td>'. $display_name .'</td>' . "\n";
										$return .= "\t" . '<td>'. $current_color . '</td>' . "\n";
										$return .= "\t" . '<td class="num">'. $user_level . '</td>' . "\n";
										$return .= "\t" . '<td>'. $role_name . '</td>' . "\n";
										$return .= '</tr>' . "\n";
	
										echo $return;
									}
									?>
										<tr valign="top">
											<td>&nbsp;</td>
											<td>&nbsp;</td>
											<td>&nbsp;</td>
											<td>&nbsp;</td>
											<td>
												<select name="_mw_adminimize_set_theme">
													<?php foreach ( $_wp_admin_css_colors as $color => $color_info ): ?>
														<option value="<?php echo $color; ?>"><?php echo $color_info->name . ' (' . $color . ')' ?></option>
													<?php endforeach; ?>
													</select>
											</td>
											<td>&nbsp;</td>
											<td>&nbsp;</td>
										</tr>
								</tbody>
							</table>
							<p id="submitbutton">
								<input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_set_theme" />
								<input type="hidden" name="_mw_adminimize_load" value="_mw_adminimize_load_theme" />
								<input type="submit" name="_mw_adminimize_save" value="<?php _e('Set Theme', FB_ADMINIMIZE_TEXTDOMAIN ); ?> &raquo;" class="button button-primary" />
							</p>
						</form>
					<?php } ?>
					
					<p><a class="alignright button" href="javascript:void(0);" onclick="window.scrollTo(0,0);" style="margin:3px 0 0 30px;"><?php _e('scroll to top', FB_ADMINIMIZE_TEXTDOMAIN); ?></a><br class="clear" /></p>
				</div>
			</div>
		</div>

Youez - 2016 - github.com/yon3zu
LinuXploit