]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/includes/screen.php
WordPress 4.3
[autoinstalls/wordpress.git] / wp-admin / includes / screen.php
index 0482d783e02473667bc48f82e322acccb663e32e..fba5dc9da06cbb784eb0e8441400926dec639f3e 100644 (file)
@@ -11,6 +11,8 @@
  *
  * @since 2.7.0
  *
+ * @staticvar array $column_headers
+ *
  * @param string|WP_Screen $screen The screen you want the headers for
  * @return array Containing the headers in the format id => UI String
  */
@@ -60,6 +62,8 @@ function get_hidden_columns( $screen ) {
  *
  * @since 2.7.0
  *
+ * @global array $wp_meta_boxes
+ *
  * @param WP_Screen $screen
  */
 function meta_box_prefs( $screen ) {
@@ -73,9 +77,12 @@ function meta_box_prefs( $screen ) {
 
        $hidden = get_hidden_meta_boxes($screen);
 
-       foreach ( array_keys($wp_meta_boxes[$screen->id]) as $context ) {
-               foreach ( array_keys($wp_meta_boxes[$screen->id][$context]) as $priority ) {
-                       foreach ( $wp_meta_boxes[$screen->id][$context][$priority] as $box ) {
+       foreach ( array_keys( $wp_meta_boxes[ $screen->id ] ) as $context ) {
+               foreach ( array( 'high', 'core', 'default', 'low' ) as $priority ) {
+                       if ( ! isset( $wp_meta_boxes[ $screen->id ][ $context ][ $priority ] ) ) {
+                               continue;
+                       }
+                       foreach ( $wp_meta_boxes[ $screen->id ][ $context ][ $priority ] as $box ) {
                                if ( false == $box || ! $box['title'] )
                                        continue;
                                // Submit box cannot be hidden
@@ -162,6 +169,8 @@ function add_screen_option( $option, $args = array() ) {
  *
  * @since 3.1.0
  *
+ * @global WP_Screen $current_screen
+ *
  * @return WP_Screen Current screen object
  */
 function get_current_screen() {
@@ -179,7 +188,7 @@ function get_current_screen() {
  * @since 3.0.0
  *
  * @param mixed $hook_name Optional. The hook name (also known as the hook suffix) used to determine the screen,
- *     or an existing screen object.
+ *                            or an existing screen object.
  */
 function set_current_screen( $hook_name = '' ) {
        WP_Screen::get( $hook_name )->set_current_screen();
@@ -323,6 +332,11 @@ final class WP_Screen {
 
        /**
         * Stores old string-based help.
+        *
+        * @static
+        * @access private
+        *
+        * @var array
         */
        private static $_old_compat_help = array();
 
@@ -339,8 +353,11 @@ final class WP_Screen {
         * The screen object registry.
         *
         * @since 3.3.0
-        * @var array
+        *
+        * @static
         * @access private
+        *
+        * @var array
         */
        private static $_registry = array();
 
@@ -368,14 +385,18 @@ final class WP_Screen {
         * @since 3.3.0
         * @access public
         *
-        * @param string $hook_name Optional. The hook name (also known as the hook suffix) used to determine the screen.
-        *      Defaults to the current $hook_suffix global.
+        * @static
+        *
+        * @global string $hook_suffix
+        *
+        * @param string|WP_Screen $hook_name Optional. The hook name (also known as the hook suffix) used to determine the screen.
+        *                                        Defaults to the current $hook_suffix global.
         * @return WP_Screen Screen object.
         */
        public static function get( $hook_name = '' ) {
-
-               if ( is_a( $hook_name, 'WP_Screen' ) )
+               if ( $hook_name instanceof WP_Screen ) {
                        return $hook_name;
+               }
 
                $post_type = $taxonomy = null;
                $in_admin = false;
@@ -528,6 +549,10 @@ final class WP_Screen {
         *
         * @see set_current_screen()
         * @since 3.3.0
+        *
+        * @global WP_Screen $current_screen
+        * @global string    $taxnow
+        * @global string    $typenow
         */
        public function set_current_screen() {
                global $current_screen, $taxnow, $typenow;
@@ -559,9 +584,8 @@ final class WP_Screen {
         * @since 3.5.0
         *
         * @param string $admin The admin to check against (network | user | site).
-        * If empty any of the three admins will result in true.
-        * @return boolean True if the screen is in the indicated admin, false otherwise.
-        *
+        *                      If empty any of the three admins will result in true.
+        * @return bool True if the screen is in the indicated admin, false otherwise.
         */
        public function in_admin( $admin = null ) {
                if ( empty( $admin ) )
@@ -577,6 +601,8 @@ final class WP_Screen {
         *
         * @since 3.3.0
         *
+        * @static
+        *
         * @param WP_Screen $screen A screen object.
         * @param string $help Help text.
         */
@@ -786,6 +812,8 @@ final class WP_Screen {
         * This will trigger the deprecated filters for backwards compatibility.
         *
         * @since 3.3.0
+        *
+        * @global string $screen_layout_columns
         */
        public function render_screen_meta() {
 
@@ -946,18 +974,24 @@ final class WP_Screen {
                <div id="screen-meta-links">
                <?php if ( $this->get_help_tabs() ) : ?>
                        <div id="contextual-help-link-wrap" class="hide-if-no-js screen-meta-toggle">
-                       <a href="#contextual-help-wrap" id="contextual-help-link" class="show-settings" aria-controls="contextual-help-wrap" aria-expanded="false"><?php _e( 'Help' ); ?></a>
+                       <button type="button" id="contextual-help-link" class="button show-settings" aria-controls="contextual-help-wrap" aria-expanded="false"><?php _e( 'Help' ); ?></button>
                        </div>
                <?php endif;
                if ( $this->show_screen_options() ) : ?>
                        <div id="screen-options-link-wrap" class="hide-if-no-js screen-meta-toggle">
-                       <a href="#screen-options-wrap" id="show-settings-link" class="show-settings" aria-controls="screen-options-wrap" aria-expanded="false"><?php _e( 'Screen Options' ); ?></a>
+                       <button type="button" id="show-settings-link" class="button show-settings" aria-controls="screen-options-wrap" aria-expanded="false"><?php _e( 'Screen Options' ); ?></button>
                        </div>
                <?php endif; ?>
                </div>
                <?php
        }
 
+       /**
+        *
+        * @global array $wp_meta_boxes
+        *
+        * @return bool
+        */
        public function show_screen_options() {
                global $wp_meta_boxes;
 
@@ -1016,6 +1050,8 @@ final class WP_Screen {
         * Render the screen options tab.
         *
         * @since 3.3.0
+        *
+        * @global array $wp_meta_boxes
         */
        public function render_screen_options() {
                global $wp_meta_boxes;
@@ -1025,7 +1061,7 @@ final class WP_Screen {
 
                ?>
                <div id="screen-options-wrap" class="hidden" tabindex="-1" aria-label="<?php esc_attr_e('Screen Options Tab'); ?>">
-               <form id="adv-settings" action="" method="post">
+               <form id="adv-settings" method="post">
                <?php if ( isset( $wp_meta_boxes[ $this->id ] ) || $this->get_option( 'per_page' ) || ( $columns && empty( $columns['_title'] ) ) ) : ?>
                        <h5><?php _e( 'Show on screen' ); ?></h5>
                <?php
@@ -1126,20 +1162,26 @@ final class WP_Screen {
         * @since 3.3.0
         */
        public function render_per_page_options() {
-               if ( ! $this->get_option( 'per_page' ) )
+               if ( null === $this->get_option( 'per_page' ) ) {
                        return;
+               }
 
                $per_page_label = $this->get_option( 'per_page', 'label' );
+               if ( null === $per_page_label ) {
+                       $per_page_label = __( 'Number of items per page:' );
+               }
 
                $option = $this->get_option( 'per_page', 'option' );
-               if ( ! $option )
+               if ( ! $option ) {
                        $option = str_replace( '-', '_', "{$this->id}_per_page" );
+               }
 
                $per_page = (int) get_user_option( $option );
                if ( empty( $per_page ) || $per_page < 1 ) {
                        $per_page = $this->get_option( 'per_page', 'default' );
-                       if ( ! $per_page )
+                       if ( ! $per_page ) {
                                $per_page = 20;
+                       }
                }
 
                if ( 'edit_comments_per_page' == $option ) {
@@ -1164,16 +1206,14 @@ final class WP_Screen {
                ?>
                <div class="screen-options">
                        <?php if ( $per_page_label ) : ?>
+                               <label for="<?php echo esc_attr( $option ); ?>"><?php echo $per_page_label; ?></label>
                                <input type="number" step="1" min="1" max="999" class="screen-per-page" name="wp_screen_options[value]"
                                        id="<?php echo esc_attr( $option ); ?>" maxlength="3"
                                        value="<?php echo esc_attr( $per_page ); ?>" />
-                               <label for="<?php echo esc_attr( $option ); ?>">
-                                       <?php echo esc_html( $per_page_label ); ?>
-                               </label>
                        <?php endif;
 
                        echo get_submit_button( __( 'Apply' ), 'button', 'screen-options-apply', false ); ?>
-                       <input type='hidden' name='wp_screen_options[option]' value='<?php echo esc_attr($option); ?>' />
+                       <input type="hidden" name="wp_screen_options[option]" value="<?php echo esc_attr( $option ); ?>" />
                </div>
                <?php
        }