mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 18:32:23 +01:00
Screen: Move editor scrolling screen option to the proper place.
see [29336], see #28328. Built from https://develop.svn.wordpress.org/trunk@29588 git-svn-id: http://core.svn.wordpress.org/trunk@29362 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
fa120992e4
commit
491f5cec39
@ -967,10 +967,16 @@ final class WP_Screen {
|
|||||||
|
|
||||||
$show_screen = ! empty( $wp_meta_boxes[ $this->id ] ) || $columns || $this->get_option( 'per_page' );
|
$show_screen = ! empty( $wp_meta_boxes[ $this->id ] ) || $columns || $this->get_option( 'per_page' );
|
||||||
|
|
||||||
switch ( $this->id ) {
|
switch ( $this->base ) {
|
||||||
case 'widgets':
|
case 'widgets':
|
||||||
$this->_screen_settings = '<p><a id="access-on" href="widgets.php?widgets-access=on">' . __('Enable accessibility mode') . '</a><a id="access-off" href="widgets.php?widgets-access=off">' . __('Disable accessibility mode') . "</a></p>\n";
|
$this->_screen_settings = '<p><a id="access-on" href="widgets.php?widgets-access=on">' . __('Enable accessibility mode') . '</a><a id="access-off" href="widgets.php?widgets-access=off">' . __('Disable accessibility mode') . "</a></p>\n";
|
||||||
break;
|
break;
|
||||||
|
case 'post' :
|
||||||
|
$expand = '<div class="editor-expand hidden"><label for="editor-expand-toggle">';
|
||||||
|
$expand .= '<input type="checkbox" id="editor-expand-toggle"' . checked( get_user_setting( 'editor_expand', 'on' ), 'on', false ) . ' />';
|
||||||
|
$expand .= __( 'Expand the editor to match the window height.' ) . '</label></div>';
|
||||||
|
$this->_screen_settings = $expand;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
$this->_screen_settings = '';
|
$this->_screen_settings = '';
|
||||||
break;
|
break;
|
||||||
@ -1110,11 +1116,6 @@ final class WP_Screen {
|
|||||||
<?php
|
<?php
|
||||||
endfor; ?>
|
endfor; ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="editor-expand hidden">
|
|
||||||
<label for="editor-expand-toggle">
|
|
||||||
<input type="checkbox" id="editor-expand-toggle" <?php checked( get_user_setting( 'editor_expand', 'on' ) === 'on' ); ?> />
|
|
||||||
<?php _e( 'Expand the editor to match the window height.' ); ?></label>
|
|
||||||
</div>
|
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user