Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/hopeinstoughton_www/wp-content/plugins/user-role-editor/includes/classes/ |
Upload File : |
<?php
class URE_Tools {
const RESET_ROLES_SECURE_TEXT = 'Permanently delete all custom user roles and capabilities';
private static function show_reset_roles( $tab_idx ) {
$lib = URE_Lib::get_instance();
$multisite = $lib->get('multisite');
$link = URE_Settings::get_settings_link();
if (!$multisite || (is_main_site( get_current_blog_id() ) || ( is_network_admin() && $lib->is_super_admin() ) ) ) {
if ( current_user_can( 'ure_reset_roles' ) ) {
?>
<div style="margin: 10px 0 10px 0; border: 1px solid red; padding: 0 10px 10px 10px; text-align:left;">
<form name="ure_reset_roles_form" id="ure_reset_roles_form" method="post" action="<?php echo $link; ?>?page=settings-<?php echo URE_PLUGIN_FILE; ?>" >
<h3>Reset User Roles</h3>
<span style="color: red;"><?php esc_html_e('WARNING!', 'user-role-editor');?></span>
<?php
esc_html_e('Resetting will setup default user roles and capabilities from WordPress core.', 'user-role-editor'); echo '<br>';
esc_html_e('If any plugins (such as WooCommerce, S2Member and many others) have changed user roles and capabilities during installation, those changes will be LOST!', 'user-role-editor'); echo '<br>';
esc_html_e('For more information on how to undo undesired changes and restore plugins capabilities in case you lost them by mistake go to: ', 'user-role-editor');
echo '<a href="http://role-editor.com/how-to-restore-deleted-wordpress-user-roles/">http://role-editor.com/how-to-restore-deleted-wordpress-user-roles/</a>';
if ( $multisite ) {
?>
<br><br>
<input type="checkbox" name="ure_apply_to_all" id="ure_apply_to_all" value="1" />
<label for="ure_apply_to_all"><?php esc_html_e('Apply to All Sites', 'user-role-editor'); ?></label>
(<?php esc_html_e('If checked, then apply action to ALL sites. Main site only is affected in other case.', 'user-role-editor'); ?>)
<?php
}
?>
<br><br>
<input type="text" id="ure_reset_roles_secure" name="ure_reset_roles_secure" value="" placeholder="<?php echo URE_Tools::RESET_ROLES_SECURE_TEXT;?>" style="width:400px;"/>
<- <span style="color: red;"><?php echo URE_Tools::RESET_ROLES_SECURE_TEXT; ?></span>
<br><br>
<button id="ure_reset_roles_button" style="width: 100px; color: red;" title="<?php esc_html_e('Reset Roles to its original state', 'user-role-editor'); ?>" disabled><?php esc_html_e('Reset', 'user-role-editor');?></button>
<?php wp_nonce_field('user-role-editor'); ?>
<input type="hidden" name="ure_settings_tools_exec" value="1" />
<input type="hidden" name="ure_reset_roles_exec" value="1" />
<input type="hidden" name="ure_tab_idx" value="<?php echo (int) $tab_idx; ?>" />
</form>
</div>
<?php
}
}
}
// end of show_reset()
public static function reset_roles() {
$editor = URE_Editor::get_instance();
if ( !$editor->reset_user_roles() ) {
return;
}
$lib = URE_Lib::get_instance();
$lib->put_option( 'other_default_roles', array(), true );
$lib->show_message( esc_html__('Tools: Reset: User Roles were initialized', 'user-role-editor') );
}
// end of reset_roles()
public static function show( $tab_idx ) {
do_action( 'ure_settings_tools_show', $tab_idx );
// Placed here, after all tools which may be added above, as a very rare needed functionality
self::show_reset_roles( $tab_idx );
}
// end of show()
}
// end of URE_Tools