]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/includes/template.php
WordPress 4.3
[autoinstalls/wordpress.git] / wp-admin / includes / template.php
index 03ff4e7d9e099e2bfedcc02037f7a707452775fb..d1a85870cf902cc74d0e621435c0e4a6ffbad48e 100644 (file)
@@ -436,10 +436,12 @@ function get_inline_data($post) {
  *
  * @since 2.7.0
  *
  *
  * @since 2.7.0
  *
- * @param int $position
- * @param bool $checkbox
+ * @global WP_List_Table $wp_list_table
+ *
+ * @param int    $position
+ * @param bool   $checkbox
  * @param string $mode
  * @param string $mode
- * @param bool $table_row
+ * @param bool   $table_row
  */
 function wp_comment_reply( $position = 1, $checkbox = false, $mode = 'single', $table_row = true ) {
        global $wp_list_table;
  */
 function wp_comment_reply( $position = 1, $checkbox = false, $mode = 'single', $table_row = true ) {
        global $wp_list_table;
@@ -603,17 +605,19 @@ function list_meta( $meta ) {
  *
  * @since 2.5.0
  *
  *
  * @since 2.5.0
  *
+ * @staticvar string $update_nonce
+ *
  * @param array $entry
  * @param int   $count
  * @return string
  */
 function _list_meta_row( $entry, &$count ) {
  * @param array $entry
  * @param int   $count
  * @return string
  */
 function _list_meta_row( $entry, &$count ) {
-       static $update_nonce = false;
+       static $update_nonce = '';
 
        if ( is_protected_meta( $entry['meta_key'], 'post' ) )
                return '';
 
 
        if ( is_protected_meta( $entry['meta_key'], 'post' ) )
                return '';
 
-       if ( !$update_nonce )
+       if ( ! $update_nonce )
                $update_nonce = wp_create_nonce( 'add-meta' );
 
        $r = '';
                $update_nonce = wp_create_nonce( 'add-meta' );
 
        $r = '';
@@ -656,6 +660,8 @@ function _list_meta_row( $entry, &$count ) {
  *
  * @since 1.2.0
  *
  *
  * @since 1.2.0
  *
+ * @global wpdb $wpdb
+ *
  * @param WP_Post $post Optional. The post being edited.
  */
 function meta_form( $post = null ) {
  * @param WP_Post $post Optional. The post being edited.
  */
 function meta_form( $post = null ) {
@@ -671,9 +677,9 @@ function meta_form( $post = null ) {
         * @param int $limit Number of custom fields to retrieve. Default 30.
         */
        $limit = apply_filters( 'postmeta_form_limit', 30 );
         * @param int $limit Number of custom fields to retrieve. Default 30.
         */
        $limit = apply_filters( 'postmeta_form_limit', 30 );
-       $sql = "SELECT meta_key
+       $sql = "SELECT DISTINCT meta_key
                FROM $wpdb->postmeta
                FROM $wpdb->postmeta
-               GROUP BY meta_key
+               WHERE meta_key NOT BETWEEN '_' AND '_z'
                HAVING meta_key NOT LIKE %s
                ORDER BY meta_key
                LIMIT %d";
                HAVING meta_key NOT LIKE %s
                ORDER BY meta_key
                LIMIT %d";
@@ -737,6 +743,9 @@ function meta_form( $post = null ) {
  *
  * @since 0.71
  *
  *
  * @since 0.71
  *
+ * @global WP_Locale $wp_locale
+ * @global object    $comment
+ *
  * @param int|bool $edit      Accepts 1|true for editing the date, 0|false for adding the date.
  * @param int|bool $for_post  Accepts 1|true for applying the date to a post, 0|false for a comment.
  * @param int      $tab_index The tabindex attribute to add. Default 0.
  * @param int|bool $edit      Accepts 1|true for editing the date, 0|false for adding the date.
  * @param int|bool $for_post  Accepts 1|true for applying the date to a post, 0|false for a comment.
  * @param int      $tab_index The tabindex attribute to add. Default 0.
@@ -772,23 +781,24 @@ function touch_time( $edit = 1, $for_post = 1, $tab_index = 0, $multi = 0 ) {
        $cur_hh = gmdate( 'H', $time_adj );
        $cur_mn = gmdate( 'i', $time_adj );
 
        $cur_hh = gmdate( 'H', $time_adj );
        $cur_mn = gmdate( 'i', $time_adj );
 
-       $month = '<label for="mm" class="screen-reader-text">' . __( 'Month' ) . '</label><select ' . ( $multi ? '' : 'id="mm" ' ) . 'name="mm"' . $tab_index_attribute . ">\n";
+       $month = '<label><span class="screen-reader-text">' . __( 'Month' ) . '</span><select ' . ( $multi ? '' : 'id="mm" ' ) . 'name="mm"' . $tab_index_attribute . ">\n";
        for ( $i = 1; $i < 13; $i = $i +1 ) {
                $monthnum = zeroise($i, 2);
        for ( $i = 1; $i < 13; $i = $i +1 ) {
                $monthnum = zeroise($i, 2);
-               $month .= "\t\t\t" . '<option value="' . $monthnum . '" ' . selected( $monthnum, $mm, false ) . '>';
+               $monthtext = $wp_locale->get_month_abbrev( $wp_locale->get_month( $i ) );
+               $month .= "\t\t\t" . '<option value="' . $monthnum . '" data-text="' . $monthtext . '" ' . selected( $monthnum, $mm, false ) . '>';
                /* translators: 1: month number (01, 02, etc.), 2: month abbreviation */
                /* translators: 1: month number (01, 02, etc.), 2: month abbreviation */
-               $month .= sprintf( __( '%1$s-%2$s' ), $monthnum, $wp_locale->get_month_abbrev( $wp_locale->get_month( $i ) ) ) . "</option>\n";
+               $month .= sprintf( __( '%1$s-%2$s' ), $monthnum, $monthtext ) . "</option>\n";
        }
        }
-       $month .= '</select>';
+       $month .= '</select></label>';
 
 
-       $day = '<label for="jj" class="screen-reader-text">' . __( 'Day' ) . '</label><input type="text" ' . ( $multi ? '' : 'id="jj" ' ) . 'name="jj" value="' . $jj . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" />';
-       $year = '<label for="aa" class="screen-reader-text">' . __( 'Year' ) . '</label><input type="text" ' . ( $multi ? '' : 'id="aa" ' ) . 'name="aa" value="' . $aa . '" size="4" maxlength="4"' . $tab_index_attribute . ' autocomplete="off" />';
-       $hour = '<label for="hh" class="screen-reader-text">' . __( 'Hour' ) . '</label><input type="text" ' . ( $multi ? '' : 'id="hh" ' ) . 'name="hh" value="' . $hh . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" />';
-       $minute = '<label for="mn" class="screen-reader-text">' . __( 'Minute' ) . '</label><input type="text" ' . ( $multi ? '' : 'id="mn" ' ) . 'name="mn" value="' . $mn . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" />';
+       $day = '<label><span class="screen-reader-text">' . __( 'Day' ) . '</span><input type="text" ' . ( $multi ? '' : 'id="jj" ' ) . 'name="jj" value="' . $jj . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" /></label>';
+       $year = '<label><span class="screen-reader-text">' . __( 'Year' ) . '</span><input type="text" ' . ( $multi ? '' : 'id="aa" ' ) . 'name="aa" value="' . $aa . '" size="4" maxlength="4"' . $tab_index_attribute . ' autocomplete="off" /></label>';
+       $hour = '<label><span class="screen-reader-text">' . __( 'Hour' ) . '</span><input type="text" ' . ( $multi ? '' : 'id="hh" ' ) . 'name="hh" value="' . $hh . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" /></label>';
+       $minute = '<label><span class="screen-reader-text">' . __( 'Minute' ) . '</span><input type="text" ' . ( $multi ? '' : 'id="mn" ' ) . 'name="mn" value="' . $mn . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" /></label>';
 
        echo '<div class="timestamp-wrap">';
        /* translators: 1: month, 2: day, 3: year, 4: hour, 5: minute */
 
        echo '<div class="timestamp-wrap">';
        /* translators: 1: month, 2: day, 3: year, 4: hour, 5: minute */
-       printf( __( '%1$s %2$s, %3$s @ %4$s : %5$s' ), $month, $day, $year, $hour, $minute );
+       printf( __( '%1$s %2$s, %3$s @ %4$s:%5$s' ), $month, $day, $year, $hour, $minute );
 
        echo '</div><input type="hidden" id="ss" name="ss" value="' . $ss . '" />';
 
 
        echo '</div><input type="hidden" id="ss" name="ss" value="' . $ss . '" />';
 
@@ -839,6 +849,8 @@ function page_template_dropdown( $default = '' ) {
  *
  * @since 1.5.0
  *
  *
  * @since 1.5.0
  *
+ * @global wpdb $wpdb
+ *
  * @param int $default Optional. The default page ID to be pre-selected. Default 0.
  * @param int $parent  Optional. The parent page ID. Default 0.
  * @param int $level   Optional. Page depth level. Default 0.
  * @param int $default Optional. The default page ID to be pre-selected. Default 0.
  * @param int $parent  Optional. The parent page ID. Default 0.
  * @param int $level   Optional. Page depth level. Default 0.
@@ -934,6 +946,8 @@ function wp_import_upload_form( $action ) {
  *
  * @since 2.5.0
  *
  *
  * @since 2.5.0
  *
+ * @global array $wp_meta_boxes
+ *
  * @param string           $id            String for use in the 'id' attribute of tags.
  * @param string           $title         Title of the meta box.
  * @param callback         $callback      Function that fills the box with the desired content.
  * @param string           $id            String for use in the 'id' attribute of tags.
  * @param string           $title         Title of the meta box.
  * @param callback         $callback      Function that fills the box with the desired content.
@@ -1022,10 +1036,12 @@ function add_meta_box( $id, $title, $callback, $screen = null, $context = 'advan
  *
  * @since 2.5.0
  *
  *
  * @since 2.5.0
  *
+ * @global array $wp_meta_boxes
+ *
  * @staticvar bool $already_sorted
  * @staticvar bool $already_sorted
- * @param string|WP_Screen $screen Screen identifier
- * @param string $context box context
- * @param mixed $object gets passed to the box callback function as first parameter
+ * @param string|WP_Screen $screen  Screen identifier
+ * @param string           $context box context
+ * @param mixed            $object  gets passed to the box callback function as first parameter
  * @return int number of meta_boxes
  */
 function do_meta_boxes( $screen, $context, $object ) {
  * @return int number of meta_boxes
  */
 function do_meta_boxes( $screen, $context, $object ) {
@@ -1090,9 +1106,11 @@ function do_meta_boxes( $screen, $context, $object ) {
  *
  * @since 2.6.0
  *
  *
  * @since 2.6.0
  *
- * @param string $id String for use in the 'id' attribute of tags.
- * @param string|object $screen The screen on which to show the box (post, page, link).
- * @param string $context The context within the page where the boxes should show ('normal', 'advanced').
+ * @global array $wp_meta_boxes
+ *
+ * @param string        $id      String for use in the 'id' attribute of tags.
+ * @param string|object $screen  The screen on which to show the box (post, page, link).
+ * @param string        $context The context within the page where the boxes should show ('normal', 'advanced').
  */
 function remove_meta_box($id, $screen, $context) {
        global $wp_meta_boxes;
  */
 function remove_meta_box($id, $screen, $context) {
        global $wp_meta_boxes;
@@ -1126,9 +1144,9 @@ function remove_meta_box($id, $screen, $context) {
  *
  * @uses global $wp_meta_boxes Used to retrieve registered meta boxes.
  *
  *
  * @uses global $wp_meta_boxes Used to retrieve registered meta boxes.
  *
- * @param string|object $screen The screen identifier.
- * @param string $context The meta box context.
- * @param mixed $object gets passed to the section callback function as first parameter.
+ * @param string|object $screen  The screen identifier.
+ * @param string        $context The meta box context.
+ * @param mixed         $object  gets passed to the section callback function as first parameter.
  * @return int number of meta boxes as accordion sections.
  */
 function do_accordion_sections( $screen, $context, $object ) {
  * @return int number of meta boxes as accordion sections.
  */
 function do_accordion_sections( $screen, $context, $object ) {
@@ -1204,10 +1222,10 @@ function do_accordion_sections( $screen, $context, $object ) {
  *
  * @global $wp_settings_sections Storage array of all settings sections added to admin pages
  *
  *
  * @global $wp_settings_sections Storage array of all settings sections added to admin pages
  *
- * @param string $id Slug-name to identify the section. Used in the 'id' attribute of tags.
- * @param string $title Formatted title of the section. Shown as the heading for the section.
+ * @param string $id       Slug-name to identify the section. Used in the 'id' attribute of tags.
+ * @param string $title    Formatted title of the section. Shown as the heading for the section.
  * @param string $callback Function that echos out any content at the top of the section (between heading and fields).
  * @param string $callback Function that echos out any content at the top of the section (between heading and fields).
- * @param string $page The slug-name of the settings page on which to show the section. Built-in pages include 'general', 'reading', 'writing', 'discussion', 'media', etc. Create your own using add_options_page();
+ * @param string $page     The slug-name of the settings page on which to show the section. Built-in pages include 'general', 'reading', 'writing', 'discussion', 'media', etc. Create your own using add_options_page();
  */
 function add_settings_section($id, $title, $callback, $page) {
        global $wp_settings_sections;
  */
 function add_settings_section($id, $title, $callback, $page) {
        global $wp_settings_sections;
@@ -1465,9 +1483,9 @@ function get_settings_errors( $setting = '', $sanitize = false ) {
  *
  * @since 3.0.0
  *
  *
  * @since 3.0.0
  *
- * @param string $setting Optional slug title of a specific setting who's errors you want.
- * @param boolean $sanitize Whether to re-sanitize the setting value before returning errors.
- * @param boolean $hide_on_update If set to true errors will not be shown if the settings page has already been submitted.
+ * @param string $setting        Optional slug title of a specific setting who's errors you want.
+ * @param bool   $sanitize       Whether to re-sanitize the setting value before returning errors.
+ * @param bool   $hide_on_update If set to true errors will not be shown if the settings page has already been submitted.
  */
 function settings_errors( $setting = '', $sanitize = false, $hide_on_update = false ) {
 
  */
 function settings_errors( $setting = '', $sanitize = false, $hide_on_update = false ) {
 
@@ -1576,6 +1594,10 @@ function _admin_search_query() {
  *
  * @since 2.7.0
  *
  *
  * @since 2.7.0
  *
+ * @global string    $hook_suffix
+ * @global string    $admin_body_class
+ * @global WP_Locale $wp_locale
+ *
  * @param string $title      Optional. Title of the Iframe page. Default empty.
  * @param bool   $deprecated Not used.
  */
  * @param string $title      Optional. Title of the Iframe page. Default empty.
  * @param bool   $deprecated Not used.
  */
@@ -1637,7 +1659,11 @@ if ( is_rtl() )
 /** This filter is documented in wp-admin/admin-header.php */
 $admin_body_classes = apply_filters( 'admin_body_class', '' );
 ?>
 /** This filter is documented in wp-admin/admin-header.php */
 $admin_body_classes = apply_filters( 'admin_body_class', '' );
 ?>
-<body<?php if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?> class="wp-admin wp-core-ui no-js iframe <?php echo $admin_body_classes . ' ' . $admin_body_class; ?>">
+<body<?php
+/**
+ * @global string $body_id
+ */
+if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?> class="wp-admin wp-core-ui no-js iframe <?php echo $admin_body_classes . ' ' . $admin_body_class; ?>">
 <script type="text/javascript">
 (function(){
 var c = document.body.className;
 <script type="text/javascript">
 (function(){
 var c = document.body.className;
@@ -1675,6 +1701,10 @@ function iframe_footer() {
 <?php
 }
 
 <?php
 }
 
+/**
+ *
+ * @param WP_Post $post
+ */
 function _post_states($post) {
        $post_states = array();
        if ( isset( $_REQUEST['post_status'] ) )
 function _post_states($post) {
        $post_states = array();
        if ( isset( $_REQUEST['post_status'] ) )
@@ -1694,6 +1724,10 @@ function _post_states($post) {
        if ( is_sticky($post->ID) )
                $post_states['sticky'] = __('Sticky');
 
        if ( is_sticky($post->ID) )
                $post_states['sticky'] = __('Sticky');
 
+       if ( 'future' === $post->post_status ) {
+               $post_states['scheduled'] = __( 'Scheduled' );
+       }
+
        if ( get_option( 'page_on_front' ) == $post->ID ) {
                $post_states['page_on_front'] = __( 'Front Page' );
        }
        if ( get_option( 'page_on_front' ) == $post->ID ) {
                $post_states['page_on_front'] = __( 'Front Page' );
        }
@@ -1725,6 +1759,10 @@ function _post_states($post) {
 
 }
 
 
 }
 
+/**
+ *
+ * @param WP_Post $post
+ */
 function _media_states( $post ) {
        $media_states = array();
        $stylesheet = get_option('stylesheet');
 function _media_states( $post ) {
        $media_states = array();
        $stylesheet = get_option('stylesheet');
@@ -1741,13 +1779,17 @@ function _media_states( $post ) {
                        $media_states[] = __( 'Background Image' );
        }
 
                        $media_states[] = __( 'Background Image' );
        }
 
+       if ( $post->ID == get_option( 'site_icon' ) ) {
+               $media_states[] = __( 'Site Icon' );
+       }
+
        /**
         * Filter the default media display states for items in the Media list table.
         *
         * @since 3.2.0
         *
         * @param array $media_states An array of media states. Default 'Header Image',
        /**
         * Filter the default media display states for items in the Media list table.
         *
         * @since 3.2.0
         *
         * @param array $media_states An array of media states. Default 'Header Image',
-        *                            'Background Image'.
+        *                            'Background Image', 'Site Icon'.
         */
        $media_states = apply_filters( 'display_media_states', $media_states );
 
         */
        $media_states = apply_filters( 'display_media_states', $media_states );
 
@@ -1921,6 +1963,10 @@ function get_submit_button( $text = '', $type = 'primary large', $name = 'submit
        return $button;
 }
 
        return $button;
 }
 
+/**
+ *
+ * @global bool $is_IE
+ */
 function _wp_admin_html_begin() {
        global $is_IE;
 
 function _wp_admin_html_begin() {
        global $is_IE;
 
@@ -1964,20 +2010,26 @@ final class WP_Internal_Pointers {
         * Individual pointers (e.g. wp390_widgets) can be disabled using the following:
         *     remove_action( 'admin_print_footer_scripts', array( 'WP_Internal_Pointers', 'pointer_wp390_widgets' ) );
         *
         * Individual pointers (e.g. wp390_widgets) can be disabled using the following:
         *     remove_action( 'admin_print_footer_scripts', array( 'WP_Internal_Pointers', 'pointer_wp390_widgets' ) );
         *
+        * @static
+        *
         * @param string $hook_suffix The current admin page.
         */
        public static function enqueue_scripts( $hook_suffix ) {
                /*
                 * Register feature pointers
         * @param string $hook_suffix The current admin page.
         */
        public static function enqueue_scripts( $hook_suffix ) {
                /*
                 * Register feature pointers
-                * Format: array( hook_suffix => pointer_id )
+                *
+                * Format:
+                *     array(
+                *         hook_suffix => pointer callback
+                *     )
+                *
+                * Example:
+                *     array(
+                *         'themes.php' => 'wp390_widgets'
+                *     )
                 */
                 */
-
                $registered_pointers = array(
                $registered_pointers = array(
-                       'post-new.php' => 'wp410_dfw',
-                       'post.php'     => 'wp410_dfw',
-                       'edit.php'     => 'wp360_locks',
-                       'widgets.php'  => 'wp390_widgets',
-                       'themes.php'   => 'wp390_widgets',
+                       // None currently
                );
 
                // Check if screen related pointer is registered
                );
 
                // Check if screen related pointer is registered
@@ -1986,8 +2038,21 @@ final class WP_Internal_Pointers {
 
                $pointers = (array) $registered_pointers[ $hook_suffix ];
 
 
                $pointers = (array) $registered_pointers[ $hook_suffix ];
 
+               /*
+                * Specify required capabilities for feature pointers
+                *
+                * Format:
+                *     array(
+                *         pointer callback => Array of required capabilities
+                *     )
+                *
+                * Example:
+                *     array(
+                *         'wp390_widgets' => array( 'edit_theme_options' )
+                *     )
+                */
                $caps_required = array(
                $caps_required = array(
-                       'wp390_widgets' => array( 'edit_theme_options' ),
+                       // None currently
                );
 
                // Get dismissed pointers
                );
 
                // Get dismissed pointers
@@ -2020,6 +2085,8 @@ final class WP_Internal_Pointers {
         *
         * @since 3.3.0
         *
         *
         * @since 3.3.0
         *
+        * @static
+        *
         * @param string $pointer_id The pointer ID.
         * @param string $selector The HTML elements, on which the pointer should be attached.
         * @param array  $args Arguments to be passed to the pointer JS (see wp-pointer.js).
         * @param string $pointer_id The pointer ID.
         * @param string $selector The HTML elements, on which the pointer should be attached.
         * @param array  $args Arguments to be passed to the pointer JS (see wp-pointer.js).
@@ -2066,83 +2133,24 @@ final class WP_Internal_Pointers {
        public static function pointer_wp340_choose_image_from_library() {}
        public static function pointer_wp350_media() {}
        public static function pointer_wp360_revisions() {}
        public static function pointer_wp340_choose_image_from_library() {}
        public static function pointer_wp350_media() {}
        public static function pointer_wp360_revisions() {}
-
-       public static function pointer_wp360_locks() {
-               if ( ! is_multi_author() ) {
-                       return;
-               }
-
-               $content  = '<h3>' . __( 'Edit Lock' ) . '</h3>';
-               $content .= '<p>' . __( 'Someone else is editing this. No need to refresh; the lock will disappear when they&#8217;re done.' ) . '</p>';
-
-               self::print_js( 'wp360_locks', 'tr.wp-locked .locked-indicator', array(
-                       'content' => $content,
-                       'position' => array( 'edge' => 'left', 'align' => 'left' ),
-               ) );
-       }
-
-       public static function pointer_wp390_widgets() {
-               if ( ! current_theme_supports( 'widgets' ) ) {
-                       return;
-               }
-
-               $content  = '<h3>' . __( 'New Feature: Live Widget Previews' ) . '</h3>';
-               $content .= '<p>' . __( 'Add, edit, and play around with your widgets from the Customizer.' ) . ' ' . __( 'Preview your changes in real-time and only save them when you&#8217;re ready.' ) . '</p>';
-
-               if ( 'themes' === get_current_screen()->id ) {
-                       $selector = '.theme.active .customize';
-                       $position = array( 'edge' => is_rtl() ? 'right' : 'left', 'align' => 'center' );
-               } else {
-                       $selector = 'a[href^="customize.php"]';
-                       if ( is_rtl() ) {
-                               $position = array( 'edge' => 'right', 'align' => 'center', 'my' => 'right-5px' );
-                       } else {
-                               $position = array( 'edge' => 'left', 'align' => 'center', 'my' => 'left-5px' );
-                       }
-               }
-
-               self::print_js( 'wp390_widgets', $selector, array(
-                       'content' => $content,
-                       'position' => $position,
-               ) );
-       }
-
-       public static function pointer_wp410_dfw() {
-               // Don't show when editor-scrolling is not used.
-               if ( empty( $GLOBALS['_wp_editor_expand'] ) ) {
-                       return;
-               }
-
-               $content  = '<h3>' . __( 'Distraction-Free Writing' ) . '</h3>';
-               $content .= '<p>' . __( 'Enable distraction-free writing mode, and everything surrounding the editor will fade away when you start typing. Move your mouse out of the editor to reveal everything again.' ) . '</p>';
-
-               if ( is_rtl() ) {
-                       $position = array( 'edge' => 'left', 'align' => 'center', 'my' => 'left+40 top-11', 'at' => 'left top' );
-               } else {
-                       $position = array( 'edge' => 'right', 'align' => 'center', 'my' => 'right-40 top-11', 'at' => 'right top' );
-               }
-
-               self::print_js( 'wp410_dfw', '#wp-content-wrap', array(
-                       'content' => $content,
-                       'position' => $position,
-               ) );
-       }
+       public static function pointer_wp360_locks() {}
+       public static function pointer_wp390_widgets() {}
+       public static function pointer_wp410_dfw() {}
 
        /**
         * Prevents new users from seeing existing 'new feature' pointers.
         *
         * @since 3.3.0
         *
 
        /**
         * Prevents new users from seeing existing 'new feature' pointers.
         *
         * @since 3.3.0
         *
+        * @static
+        *
         * @param int $user_id User ID.
         */
        public static function dismiss_pointers_for_new_users( $user_id ) {
         * @param int $user_id User ID.
         */
        public static function dismiss_pointers_for_new_users( $user_id ) {
-               add_user_meta( $user_id, 'dismissed_wp_pointers', 'wp360_locks,wp390_widgets' );
+               add_user_meta( $user_id, 'dismissed_wp_pointers', '' );
        }
 }
 
        }
 }
 
-add_action( 'admin_enqueue_scripts', array( 'WP_Internal_Pointers', 'enqueue_scripts'                ) );
-add_action( 'user_register',         array( 'WP_Internal_Pointers', 'dismiss_pointers_for_new_users' ) );
-
 /**
  * Convert a screen string to a screen object
  *
 /**
  * Convert a screen string to a screen object
  *