| 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 : |
<?php
/**
* @package Adminimize
* @subpackage Dashboard 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="dashboard_options"><?php _e('Dashboard options', FB_ADMINIMIZE_TEXTDOMAIN ); ?></h3>
<div class="inside">
<br class="clear" />
<?php
// get widgets
$widgets = _mw_adminimize_get_option_value('mw_adminimize_dashboard_widgets');
if ( ! isset( $widgets ) ) {
echo '<p class="form-invalid">';
_e( 'To complete the installation for Dashboard Widgets you must visit your dashboard once and then come back to Settings > Adminimize to configure who has access to each widget.', FB_ADMINIMIZE_TEXTDOMAIN );
echo '</p>';
} else {
?>
<table summary="config_edit_dashboard" class="widefat">
<thead>
<tr>
<th><?php _e('Option', FB_ADMINIMIZE_TEXTDOMAIN ); ?></th>
<?php
foreach ($user_roles_names as $role_name) { ?>
<th><?php _e('Deactivate for', FB_ADMINIMIZE_TEXTDOMAIN ); echo '<br/>' . $role_name; ?></th>
<?php } ?>
</tr>
</thead>
<tbody>
<?php
foreach ($user_roles as $role) {
$disabled_dashboard_option_[$role] = _mw_adminimize_get_option_value('mw_adminimize_disabled_dashboard_option_'. $role .'_items');
}
$dashboard_options = array();
$dashboard_options_names = array();
foreach ( $widgets as $widget ) {
array_push( $dashboard_options, $widget['id'] );
array_push( $dashboard_options_names, $widget['title'] );
}
$_mw_adminimize_own_dashboard_values = _mw_adminimize_get_option_value('_mw_adminimize_own_dashboard_values');
$_mw_adminimize_own_dashboard_values = preg_split( "/\r\n/", $_mw_adminimize_own_dashboard_values );
foreach ( (array) $_mw_adminimize_own_dashboard_values as $key => $_mw_adminimize_own_dashboard_value ) {
$_mw_adminimize_own_dashboard_value = trim($_mw_adminimize_own_dashboard_value);
array_push($dashboard_options, $_mw_adminimize_own_dashboard_value);
}
$_mw_adminimize_own_dashboard_options = _mw_adminimize_get_option_value('_mw_adminimize_own_dashboard_options');
$_mw_adminimize_own_dashboard_options = preg_split( "/\r\n/", $_mw_adminimize_own_dashboard_options );
foreach ( (array) $_mw_adminimize_own_dashboard_options as $key => $_mw_adminimize_own_dashboard_option ) {
$_mw_adminimize_own_dashboard_option = trim($_mw_adminimize_own_dashboard_option);
array_push($dashboard_options_names, $_mw_adminimize_own_dashboard_option);
}
$x = 0;
foreach ($dashboard_options as $index => $dashboard_option) {
if ( $dashboard_option != '') {
$checked_user_role_ = array();
foreach ($user_roles as $role) {
$checked_user_role_[$role] = ( isset($disabled_dashboard_option_[$role]) && in_array($dashboard_option, $disabled_dashboard_option_[$role]) ) ? ' checked="checked"' : '';
}
echo '<tr>' . "\n";
echo '<td>' . $dashboard_options_names[$index] . ' <span style="color:#ccc; font-weight: 400;">(' . $dashboard_option . ')</span> </td>' . "\n";
foreach ($user_roles as $role) {
echo '<td class="num"><input id="check_post'. $role . $x .'" type="checkbox"' . $checked_user_role_[$role] . ' name="mw_adminimize_disabled_dashboard_option_'. $role .'_items[]" value="' . $dashboard_option . '" /></td>' . "\n";
}
echo '</tr>' . "\n";
$x++;
}
}
?>
</tbody>
</table>
<?php
//your own dashboard options
?>
<br style="margin-top: 10px;" />
<table summary="config_edit_post" class="widefat">
<thead>
<tr>
<th><?php _e('Your own options', FB_ADMINIMIZE_TEXTDOMAIN ); echo '<br />'; _e('ID or class', FB_ADMINIMIZE_TEXTDOMAIN ); ?></th>
<th><?php echo '<br />'; _e('Option', FB_ADMINIMIZE_TEXTDOMAIN ); ?></th>
</tr>
</thead>
<tbody>
<tr valign="top">
<td colspan="2"><?php _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.', FB_ADMINIMIZE_TEXTDOMAIN ); ?></td>
</tr>
<tr valign="top">
<td>
<textarea name="_mw_adminimize_own_dashboard_options" cols="60" rows="3" id="_mw_adminimize_own_dashboard_options" style="width: 95%;" ><?php echo _mw_adminimize_get_option_value('_mw_adminimize_own_dashboard_options'); ?></textarea>
<br />
<?php _e('Possible nomination for ID or class. Separate multiple nominations through a carriage return.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
</td>
<td>
<textarea class="code" name="_mw_adminimize_own_dashboard_values" cols="60" rows="3" id="_mw_adminimize_own_dashboard_values" style="width: 95%;" ><?php echo _mw_adminimize_get_option_value('_mw_adminimize_own_dashboard_values'); ?></textarea>
<br />
<?php _e('Possible IDs or classes. Separate multiple values through a carriage return.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
</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 _e('Update Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?> »" /><input type="hidden" name="page_options" value="'dofollow_timeout'" />
</p>
<?php } // end if else $widgets ?>
<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>