diff --git src/wp-admin/includes/class-wp-screen.php src/wp-admin/includes/class-wp-screen.php
index 7b7290011c..43db2119de 100644
|
|
|
final class WP_Screen { |
| 31 | 31 | * For example, for an `$id` of 'edit-post' the base is 'edit'. |
| 32 | 32 | * |
| 33 | 33 | * @since 3.3.0 |
| 34 | | * @var string |
| | 34 | * @var string|null |
| 35 | 35 | */ |
| 36 | 36 | public $base; |
| 37 | 37 | |
| … |
… |
final class WP_Screen { |
| 47 | 47 | * The unique ID of the screen. |
| 48 | 48 | * |
| 49 | 49 | * @since 3.3.0 |
| 50 | | * @var string |
| | 50 | * @var string|null |
| 51 | 51 | */ |
| 52 | 52 | public $id; |
| 53 | 53 | |
| … |
… |
final class WP_Screen { |
| 89 | 89 | * have a `$parent_base` of 'edit'. |
| 90 | 90 | * |
| 91 | 91 | * @since 3.3.0 |
| 92 | | * @var string |
| | 92 | * @var string|null |
| 93 | 93 | */ |
| 94 | 94 | public $parent_base; |
| 95 | 95 | |
| … |
… |
final class WP_Screen { |
| 99 | 99 | * Some `$parent_file` values are 'edit.php?post_type=page', 'edit.php', and 'options-general.php'. |
| 100 | 100 | * |
| 101 | 101 | * @since 3.3.0 |
| 102 | | * @var string |
| | 102 | * @var string|null |
| 103 | 103 | */ |
| 104 | 104 | public $parent_file; |
| 105 | 105 | |
| … |
… |
final class WP_Screen { |
| 176 | 176 | * Stores the result of the public show_screen_options function. |
| 177 | 177 | * |
| 178 | 178 | * @since 3.3.0 |
| 179 | | * @var bool |
| | 179 | * @var bool|null |
| 180 | 180 | */ |
| 181 | 181 | private $_show_screen_options; |
| 182 | 182 | |
| … |
… |
final class WP_Screen { |
| 184 | 184 | * Stores the 'screen_settings' section of screen options. |
| 185 | 185 | * |
| 186 | 186 | * @since 3.3.0 |
| 187 | | * @var string |
| | 187 | * @var string|null |
| 188 | 188 | */ |
| 189 | 189 | private $_screen_settings; |
| 190 | 190 | |