Changeset 18784
- Timestamp:
- 09/26/2011 11:31:54 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/screen.php
r18782 r18784 597 597 } 598 598 599 class WP_Screen {600 var$action = '';601 var$base;602 var$id;603 var$is_network;604 var$is_user;605 var$parent_base;606 var$parent_file;607 var$post_type;608 var$taxonomy;609 610 function __construct( $id = '' ) {599 final class WP_Screen { 600 public $action = ''; 601 public $base; 602 public $id; 603 public $is_network; 604 public $is_user; 605 public $parent_base; 606 public $parent_file; 607 public $post_type; 608 public $taxonomy; 609 610 public function __construct( $id = '' ) { 611 611 global $hook_suffix, $typenow, $taxnow; 612 612 … … 677 677 } 678 678 679 function add_option( $option, $args = array() ) {679 public function add_option( $option, $args = array() ) { 680 680 return add_screen_option( $option, $args ); 681 681 } 682 682 683 function add_help_tab( $id, $title, $content) {683 public function add_help_tab( $id, $title, $content) { 684 684 global $_wp_contextual_help; 685 685 … … 687 687 } 688 688 689 function add_help_sidebar( $content ) {689 public function add_help_sidebar( $content ) { 690 690 global $_wp_contextual_help; 691 691
Note: See TracChangeset
for help on using the changeset viewer.