Changeset 28500 for trunk/src/wp-admin/includes/screen.php
- Timestamp:
- 05/19/2014 05:03:44 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/screen.php
r28348 r28500 531 531 * @since 3.3.0 532 532 */ 533 function set_current_screen() {533 public function set_current_screen() { 534 534 global $current_screen, $taxnow, $typenow; 535 535 $current_screen = $this; … … 582 582 * @param string $help Help text. 583 583 */ 584 static function add_old_compat_help( $screen, $help ) {584 public static function add_old_compat_help( $screen, $help ) { 585 585 self::$_old_compat_help[ $screen->id ] = $help; 586 586 } … … 594 594 * @param string $parent_file The parent file of the screen. Typically the $parent_file global. 595 595 */ 596 function set_parentage( $parent_file ) {596 public function set_parentage( $parent_file ) { 597 597 $this->parent_file = $parent_file; 598 598 list( $this->parent_base ) = explode( '?', $parent_file ); … … 1090 1090 * @since 3.3.0 1091 1091 */ 1092 function render_screen_layout() {1092 public function render_screen_layout() { 1093 1093 if ( ! $this->get_option('layout_columns') ) 1094 1094 return; … … 1119 1119 * @since 3.3.0 1120 1120 */ 1121 function render_per_page_options() {1121 public function render_per_page_options() { 1122 1122 if ( ! $this->get_option( 'per_page' ) ) 1123 1123 return;
Note: See TracChangeset
for help on using the changeset viewer.