From 30f64015c26329cdaea663a6d43ed6a6b22d2f56 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Mon, 26 Sep 2011 23:31:54 +0000 Subject: [PATCH] Make WP_Screen final until we know which direction we want to go with it. Other keyword decorations. see #18785. git-svn-id: https://develop.svn.wordpress.org/trunk@18784 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/screen.php | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/wp-admin/includes/screen.php b/wp-admin/includes/screen.php index 45f2b07c5c..4f72971c5c 100644 --- a/wp-admin/includes/screen.php +++ b/wp-admin/includes/screen.php @@ -596,18 +596,18 @@ function set_current_screen( $id = '' ) { $current_screen = apply_filters('current_screen', $current_screen); } -class WP_Screen { - var $action = ''; - var $base; - var $id; - var $is_network; - var $is_user; - var $parent_base; - var $parent_file; - var $post_type; - var $taxonomy; +final class WP_Screen { + public $action = ''; + public $base; + public $id; + public $is_network; + public $is_user; + public $parent_base; + public $parent_file; + public $post_type; + public $taxonomy; - function __construct( $id = '' ) { + public function __construct( $id = '' ) { global $hook_suffix, $typenow, $taxnow; $action = ''; @@ -676,17 +676,17 @@ class WP_Screen { $this->parent_base = str_replace('.php', '', $this->parent_base); } - function add_option( $option, $args = array() ) { + public function add_option( $option, $args = array() ) { return add_screen_option( $option, $args ); } - function add_help_tab( $id, $title, $content) { + public function add_help_tab( $id, $title, $content) { global $_wp_contextual_help; $_wp_contextual_help[$this->id]['tabs'][] = array( $id, $title, $content ); } - function add_help_sidebar( $content ) { + public function add_help_sidebar( $content ) { global $_wp_contextual_help; $_wp_contextual_help[$this->id]['sidebar'] = $content;