HEX
Server: Apache/2
System: Linux chaudang 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: mgawa (1021)
PHP: 7.3.33
Disabled: NONE
Upload Files
File: /home/mgawa/public_html/wp-content/plugins/adminimize/inc-options/global_options.php
<?php
/**
 * @package    Adminimize
 * @subpackage Global 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 esc_attr_e( 'Click to toggle', 'adminimize' ); ?>"><br /></div>
		<h3 class="hndle" id="global_options"><?php esc_attr_e( 'Global options', 'adminimize' ); ?></h3>

		<div class="inside">
			<br class="clear" />

			<table summary="config_edit_post" class="widefat">
				<colgroup>
					<?php
					$col = 0;
					foreach ( $user_roles_names as $role_name ) {
						echo '<col class="col' . $col . '">' . "\n";
						$col ++;
					}
					?>
				</colgroup>
				<thead>
				<tr>
					<th><?php esc_attr_e( 'Option', 'adminimize' ); ?></th>
					<?php
					foreach ( $user_roles_names as $role_name ) { ?>
						<th><?php esc_attr_e( 'Deactivate for', 'adminimize' );
							echo '<br/>' . $role_name; ?></th>
					<?php } ?>
				</tr>
				<tr>
					<td><?php esc_attr_e( 'Select all', 'adminimize' ); ?></td>
					<?php
					foreach ( $user_roles as $role_slug ) {
						echo '<td class="num">';
						echo '<input id="select_all" class="global_options_' . $role_slug
								. '" type="checkbox" name="" value="" />';
						echo '</td>' . "\n";
					} ?>
				</tr>
				</thead>

				<tbody>
				<?php
				foreach ( $user_roles as $role ) {
					$disabled_global_option_[ $role ] = _mw_adminimize_get_option_value(
						'mw_adminimize_disabled_global_option_' . $role . '_items'
					);
				}

				$global_options = array(
					'.show-admin-bar',
					'#favorite-actions',
					'#screen-meta',
					'#screen-options, #screen-options-link-wrap',
					'#contextual-help-link-wrap',
					'#your-profile .form-table fieldset',
					'.admin-notices',
				);

				$global_options_names = array(
					esc_attr__( 'Admin Bar', 'adminimize' ),
					esc_attr__( 'Favorite Actions', 'adminimize' ),
					esc_attr__( 'Screen-Meta', 'adminimize' ),
					esc_attr__( 'Screen Options', 'adminimize' ),
					esc_attr__( 'Contextual Help', 'adminimize' ),
					esc_attr__( 'Admin Color Scheme', 'adminimize' ),
					esc_attr__( 'Admin Notices', 'adminimize' ),
				);

				$_mw_adminimize_own_values = _mw_adminimize_get_option_value( '_mw_adminimize_own_values' );
				$_mw_adminimize_own_values = preg_split( "/\r\n/", $_mw_adminimize_own_values );
				foreach ( (array) $_mw_adminimize_own_values as $key => $_mw_adminimize_own_value ) {
					$_mw_adminimize_own_value = trim( $_mw_adminimize_own_value );
					$global_options[] = $_mw_adminimize_own_value;
				}

				$_mw_adminimize_own_options = _mw_adminimize_get_option_value( '_mw_adminimize_own_options' );
				$_mw_adminimize_own_options = preg_split( "/\r\n/", $_mw_adminimize_own_options );
				foreach ( (array) $_mw_adminimize_own_options as $key => $_mw_adminimize_own_option ) {
					$_mw_adminimize_own_option = trim( $_mw_adminimize_own_option );
					$global_options_names[] = $_mw_adminimize_own_option;
				}

				$x = 0;
				foreach ( $global_options as $index => $global_option ) {

					if ( empty( $global_option ) ) {
						continue;
					}

					$checked_user_role_ = array();
					foreach ( (array) $user_roles as $role ) {
						$checked_user_role_[ $role ] = ( isset( $disabled_global_option_[ $role ] )
							&& in_array( $global_option, $disabled_global_option_[ $role ], true ) ) ? ' checked="checked"'
							: '';
					}
					echo '<tr>' . "\n";
					echo '<td>' . $global_options_names[ $index ] . ' <span>(' . $global_option . ')</span> </td>' . "\n";
					foreach ( (array) $user_roles as $role ) {
						echo '<td class="num"><input id="check_post' . $role . $x . '" class="global_options_'
							. preg_replace( '/[^a-z0-9_-]+/', '', $role ) . '" type="checkbox"'
							. $checked_user_role_[ $role ] . ' name="mw_adminimize_disabled_global_option_'
							. $role . '_items[]" value="' . $global_option . '" /></td>' . "\n";
					}
					echo '</tr>' . "\n";
					$x ++;

				}
				?>
				</tbody>
			</table>

			<?php
			//your own global options
			?>
			<br style="margin-top: 10px;" />
			<table summary="config_edit_post" class="widefat">
				<thead>
				<tr>
					<th><?php esc_attr_e( 'Your own options', 'adminimize' );
						echo '<br />';
						esc_attr_e( 'Option name', 'adminimize' ); ?></th>
					<th><?php echo '<br />';
						esc_attr_e( 'Selector, ID or class', 'adminimize' ); ?></th>
				</tr>
				</thead>

				<tbody>
				<tr valign="top">
					<td colspan="2"><?php esc_attr_e(
							'It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line.',
							'adminimize'
						); ?></td>
				</tr>
				<tr valign="top">
					<td>
						<textarea name="_mw_adminimize_own_options" cols="60" rows="3"
								id="_mw_adminimize_own_options" style="width: 95%;"><?php echo _mw_adminimize_get_option_value(
								'_mw_adminimize_own_options'
							); ?></textarea>
						<br />
						<?php esc_attr_e(
							'Possible nomination for ID or class. Separate multiple nominations through a carriage return.',
							'adminimize'
						); ?>
					</td>
					<td>
						<textarea class="code" name="_mw_adminimize_own_values" cols="60" rows="3"
								id="_mw_adminimize_own_values" style="width: 95%;"><?php echo _mw_adminimize_get_option_value(
								'_mw_adminimize_own_values'
							); ?></textarea>
						<br />
						<?php esc_attr_e(
							'Possible IDs or classes. Separate multiple values through a carriage return.', 'adminimize'
						); ?>
					</td>
				</tr>
				</tbody>
			</table>

			<p id="submitbutton">
				<input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_insert" />
				<input class="button button-primary" type="submit" name="_mw_adminimize_save" value="<?php esc_attr_e(
					'Update Options', 'adminimize'
				); ?> &raquo;" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
			</p>

			<p>
				<a class="alignright button" href="javascript:void(0);" onclick="window.scrollTo(0,0);"
						style="margin:3px 0 0 30px;"><?php esc_attr_e(
						'scroll to top', 'adminimize'
					); ?></a>
				<br class="clear" />
			</p>

		</div>
	</div>
</div>