diff --git src/wp-admin/includes/class-core-upgrader.php src/wp-admin/includes/class-core-upgrader.php
index 0bbf433..eb12301 100644
|
|
|
class Core_Upgrader extends WP_Upgrader {
|
| 242 | 242 | * |
| 243 | 243 | * @since 3.7.0 |
| 244 | 244 | * |
| 245 | | * @static |
| 246 | | * |
| 247 | 245 | * @param string $offered_ver The offered version, of the format x.y.z. |
| 248 | 246 | * @return bool True if we should update to the offered version, otherwise false. |
| 249 | 247 | */ |
diff --git src/wp-admin/includes/class-language-pack-upgrader.php src/wp-admin/includes/class-language-pack-upgrader.php
index 6eff004..6f8e5d6 100644
|
|
|
class Language_Pack_Upgrader extends WP_Upgrader {
|
| 41 | 41 | * Hooked to the {@see 'upgrader_process_complete'} action by default. |
| 42 | 42 | * |
| 43 | 43 | * @since 3.7.0 |
| 44 | | * @static |
| 45 | 44 | * |
| 46 | 45 | * @param false|WP_Upgrader $upgrader Optional. WP_Upgrader instance or false. If `$upgrader` is |
| 47 | 46 | * a Language_Pack_Upgrader instance, the method will bail to |
diff --git src/wp-admin/includes/class-wp-internal-pointers.php src/wp-admin/includes/class-wp-internal-pointers.php
index 814ba37..4251df3 100644
|
|
|
final class WP_Internal_Pointers {
|
| 24 | 24 | * Individual pointers (e.g. wp390_widgets) can be disabled using the following: |
| 25 | 25 | * remove_action( 'admin_print_footer_scripts', array( 'WP_Internal_Pointers', 'pointer_wp390_widgets' ) ); |
| 26 | 26 | * |
| 27 | | * @static |
| 28 | | * |
| 29 | 27 | * @param string $hook_suffix The current admin page. |
| 30 | 28 | */ |
| 31 | 29 | public static function enqueue_scripts( $hook_suffix ) { |
| … |
… |
final class WP_Internal_Pointers {
|
| 102 | 100 | * |
| 103 | 101 | * @since 3.3.0 |
| 104 | 102 | * |
| 105 | | * @static |
| 106 | | * |
| 107 | 103 | * @param string $pointer_id The pointer ID. |
| 108 | 104 | * @param string $selector The HTML elements, on which the pointer should be attached. |
| 109 | 105 | * @param array $args Arguments to be passed to the pointer JS (see wp-pointer.js). |
| … |
… |
final class WP_Internal_Pointers {
|
| 160 | 156 | * |
| 161 | 157 | * @since 3.3.0 |
| 162 | 158 | * |
| 163 | | * @static |
| 164 | | * |
| 165 | 159 | * @param int $user_id User ID. |
| 166 | 160 | */ |
| 167 | 161 | public static function dismiss_pointers_for_new_users( $user_id ) { |
diff --git src/wp-admin/includes/class-wp-screen.php src/wp-admin/includes/class-wp-screen.php
index 0277970..6133f92 100644
|
|
|
final class WP_Screen {
|
| 141 | 141 | /** |
| 142 | 142 | * Stores old string-based help. |
| 143 | 143 | * |
| 144 | | * @static |
| 145 | | * |
| 146 | 144 | * @var array |
| 147 | 145 | */ |
| 148 | 146 | private static $_old_compat_help = array(); |
| … |
… |
final class WP_Screen {
|
| 160 | 158 | * |
| 161 | 159 | * @since 3.3.0 |
| 162 | 160 | * |
| 163 | | * @static |
| 164 | | * |
| 165 | 161 | * @var array |
| 166 | 162 | */ |
| 167 | 163 | private static $_registry = array(); |
| … |
… |
final class WP_Screen {
|
| 187 | 183 | * |
| 188 | 184 | * @since 3.3.0 |
| 189 | 185 | * |
| 190 | | * @static |
| 191 | | * |
| 192 | 186 | * @global string $hook_suffix |
| 193 | 187 | * |
| 194 | 188 | * @param string|WP_Screen $hook_name Optional. The hook name (also known as the hook suffix) used to determine the screen. |
| … |
… |
final class WP_Screen {
|
| 421 | 415 | * |
| 422 | 416 | * @since 3.3.0 |
| 423 | 417 | * |
| 424 | | * @static |
| 425 | | * |
| 426 | 418 | * @param WP_Screen $screen A screen object. |
| 427 | 419 | * @param string $help Help text. |
| 428 | 420 | */ |
diff --git src/wp-admin/includes/class-wp-upgrader.php src/wp-admin/includes/class-wp-upgrader.php
index b7e5365..f22f5a8f 100644
|
|
|
class WP_Upgrader {
|
| 846 | 846 | * Creates a lock using WordPress options. |
| 847 | 847 | * |
| 848 | 848 | * @since 4.5.0 |
| 849 | | * @static |
| 850 | 849 | * |
| 851 | 850 | * @param string $lock_name The name of this unique lock. |
| 852 | 851 | * @param int $release_timeout Optional. The duration in seconds to respect an existing lock. |
| … |
… |
class WP_Upgrader {
|
| 892 | 891 | * Releases an upgrader lock. |
| 893 | 892 | * |
| 894 | 893 | * @since 4.5.0 |
| 895 | | * @static |
| 896 | 894 | * |
| 897 | 895 | * @see WP_Upgrader::create_lock() |
| 898 | 896 | * |