';
echo 'body.wp-admin .user-rich-editing-wrap { display: none; }';
echo '';
self::after_do_function( __FUNCTION__ );
}
public static function hide_syntax_highlighting() {
if( ! self::is_do_function( __FUNCTION__ ) ) {
return false;
}
$setting_data = self::get_setting_data();
if( empty( $setting_data['hide_syntax_highlighting'] ) ) {
return false;
}
echo '';
self::after_do_function( __FUNCTION__ );
}
public static function hide_admin_color() {
if( ! self::is_do_function( __FUNCTION__ ) ) {
return false;
}
$setting_data = self::get_setting_data();
if( empty( $setting_data['hide_admin_color'] ) ) {
return false;
}
echo '';
self::after_do_function( __FUNCTION__ );
}
public static function hide_comment_shortcuts() {
if( ! self::is_do_function( __FUNCTION__ ) ) {
return false;
}
$setting_data = self::get_setting_data();
if( empty( $setting_data['hide_comment_shortcuts'] ) ) {
return false;
}
echo '';
self::after_do_function( __FUNCTION__ );
}
public static function hide_toolbar() {
if( ! self::is_do_function( __FUNCTION__ ) ) {
return false;
}
$setting_data = self::get_setting_data();
if( empty( $setting_data['hide_toolbar'] ) ) {
return false;
}
echo '';
self::after_do_function( __FUNCTION__ );
}
public static function hide_language() {
if( ! self::is_do_function( __FUNCTION__ ) ) {
return false;
}
$setting_data = self::get_setting_data();
if( empty( $setting_data['hide_language'] ) ) {
return false;
}
echo '';
self::after_do_function( __FUNCTION__ );
}
public static function hide_url() {
if( ! self::is_do_function( __FUNCTION__ ) ) {
return false;
}
$setting_data = self::get_setting_data();
if( empty( $setting_data['hide_url'] ) ) {
return false;
}
echo '';
self::after_do_function( __FUNCTION__ );
}
public static function hide_description() {
if( ! self::is_do_function( __FUNCTION__ ) ) {
return false;
}
$setting_data = self::get_setting_data();
if( empty( $setting_data['hide_description'] ) ) {
return false;
}
echo '';
self::after_do_function( __FUNCTION__ );
}
public static function hide_picture() {
if( ! self::is_do_function( __FUNCTION__ ) ) {
return false;
}
$setting_data = self::get_setting_data();
if( empty( $setting_data['hide_picture'] ) ) {
return false;
}
echo '';
self::after_do_function( __FUNCTION__ );
}
public static function hide_session() {
if( ! self::is_do_function( __FUNCTION__ ) ) {
return false;
}
$setting_data = self::get_setting_data();
if( empty( $setting_data['hide_session'] ) ) {
return false;
}
echo '';
self::after_do_function( __FUNCTION__ );
}
public static function hide_contact_fields() {
if( ! self::is_do_function( __FUNCTION__ ) ) {
return false;
}
$setting_data = self::get_setting_data();
if( empty( $setting_data['hide_contact_fields'] ) ) {
return false;
}
echo '';
self::after_do_function( __FUNCTION__ );
}
}
MywpControllerModuleAdminUserEdit::init();
endif;