Changeset 53061
- Timestamp:
- 04/04/2022 06:37:24 PM (3 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/admin-header.php
r53060 r53061 23 23 * @global int $total_update_count 24 24 * @global string $parent_file 25 * @global string $typenow 25 * @global string $typenow The post type of the current screen. 26 26 */ 27 27 global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow, -
trunk/src/wp-admin/admin.php
r53060 r53061 125 125 * @global string $hook_suffix 126 126 * @global string $plugin_page 127 * @global string $typenow 127 * @global string $typenow The post type of the current screen. 128 128 * @global string $taxnow 129 129 */ -
trunk/src/wp-admin/includes/class-wp-screen.php
r52257 r53061 403 403 * 404 404 * @global WP_Screen $current_screen WordPress current screen object. 405 * @global string $typenow The post type of the current screen. 405 406 * @global string $taxnow 406 * @global string $typenow407 407 */ 408 408 public function set_current_screen() { 409 409 global $current_screen, $taxnow, $typenow; 410 410 411 $current_screen = $this; 412 $typenow = $this->post_type; 411 413 $taxnow = $this->taxonomy; 412 $typenow = $this->post_type;413 414 414 415 /** -
trunk/src/wp-admin/includes/plugin.php
r53060 r53061 1860 1860 * @global array $submenu 1861 1861 * @global string $pagenow The filename of the current screen. 1862 * @global string $typenow 1862 * @global string $typenow The post type of the current screen. 1863 1863 * @global string $plugin_page 1864 1864 * @global array $_wp_real_parent_file … … 1948 1948 * 1949 1949 * @global string $title 1950 * @global array $menu1951 * @global array $submenu1950 * @global array $menu 1951 * @global array $submenu 1952 1952 * @global string $pagenow The filename of the current screen. 1953 * @global string $typenow The post type of the current screen. 1953 1954 * @global string $plugin_page 1954 * @global string $typenow1955 1955 * 1956 1956 * @return string The title of the current admin page. 1957 1957 */ 1958 1958 function get_admin_page_title() { 1959 global $title, $menu, $submenu, $pagenow, $ plugin_page, $typenow;1959 global $title, $menu, $submenu, $pagenow, $typenow, $plugin_page; 1960 1960 1961 1961 if ( ! empty( $title ) ) { -
trunk/src/wp-admin/menu-header.php
r53050 r53061 60 60 * @global string $submenu_file 61 61 * @global string $plugin_page 62 * @global string $typenow 62 * @global string $typenow The post type of the current screen. 63 63 * 64 64 * @param array $menu
Note: See TracChangeset
for help on using the changeset viewer.