/home/vianto5/heredit.mx/wp-content/plugins/user-role-editor/includes/classes
NameSizeModeActions
admin-notice.php19210644editdlrm
advertisement.php28550644editdlrm
ajax-processor.php135380644editdlrm
assign-role.php72720644editdlrm
base-lib.php110120644editdlrm
bbpress.php29110644editdlrm
capabilities-groups-manager.php182210644editdlrm
capabilities.php157000644editdlrm
capability.php100400644editdlrm
core.php93630644editdlrm
editor.php664710644editdlrm
grant-roles.php204400644editdlrm
known-js-css-compatibility-issues.php26820644editdlrm
lib.php196410644editdlrm
loader.php51820644editdlrm
own-capabilities.php61970644editdlrm
protect-admin.php83050644editdlrm
role-additional-options.php49500644editdlrm
role-view.php199820644editdlrm
screen-help.php59360644editdlrm
settings.php105320644editdlrm
task-queue.php40630644editdlrm
tools.php39460644editdlrm
uninstall.php27240644editdlrm
user-other-roles.php152820644editdlrm
user-role-editor.php386120644editdlrm
user-view.php92010644editdlrm
view.php148540644editdlrm
woocommerce-capabilities.php59740644editdlrm
Edit: /home/vianto5/heredit.mx/wp-content/plugins/user-role-editor/includes/classes/screen-help.php (5936B)
'. esc_html__('User Role Editor Options page help', 'user-role-editor') .'

'; return $text; } // end of get_general_tab() protected function get_additional_modules_tab() { $text = '

'. esc_html__('User Role Editor Options page help', 'user-role-editor') .'

'; return $text; } // end of get_additional_modules_tab() protected function get_default_roles_tab() { $text = '

'. esc_html__('User Role Editor Options page help', 'user-role-editor') .'

'; return $text; } // end of get_default_roles_tab() protected function get_multisite_tab() { $text = '

'. esc_html__( 'User Role Editor Options page help', 'user-role-editor' ) .'

'; return $text; } // end of get_multisite_tab() public function get_settings_help($tab_name) { switch ($tab_name) { case 'general':{ $text = $this->get_general_tab(); break; } case 'additional_modules':{ $text = $this->get_additional_modules_tab(); break; } case 'default_roles':{ $text = $this->get_default_roles_tab(); break; } case 'multisite':{ $text = $this->get_multisite_tab(); break; } default: } return $text; } // end of get_settings_help() } // end of URE_Screen_Help