]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/includes/post.php
WordPress 4.2
[autoinstalls/wordpress.git] / wp-admin / includes / post.php
index 49060309222acf092aabd8220eb86a7db2f25e6c..9356ace1aaa370ff1edb0dd5f58301766e3aac3b 100644 (file)
@@ -314,6 +314,52 @@ function edit_post( $post_data = null ) {
                $post_data = apply_filters( 'attachment_fields_to_save', $post_data, $attachment_data );
        }
 
+       // Convert taxonomy input to term IDs, to avoid ambiguity.
+       if ( isset( $post_data['tax_input'] ) ) {
+               foreach ( (array) $post_data['tax_input'] as $taxonomy => $terms ) {
+                       // Hierarchical taxonomy data is already sent as term IDs, so no conversion is necessary.
+                       if ( is_taxonomy_hierarchical( $taxonomy ) ) {
+                               continue;
+                       }
+
+                       /*
+                        * Assume that a 'tax_input' string is a comma-separated list of term names.
+                        * Some languages may use a character other than a comma as a delimiter, so we standardize on
+                        * commas before parsing the list.
+                        */
+                       if ( ! is_array( $terms ) ) {
+                               $comma = _x( ',', 'tag delimiter' );
+                               if ( ',' !== $comma ) {
+                                       $terms = str_replace( $comma, ',', $terms );
+                               }
+                               $terms = explode( ',', trim( $terms, " \n\t\r\0\x0B," ) );
+                       }
+
+                       $clean_terms = array();
+                       foreach ( $terms as $term ) {
+                               // Empty terms are invalid input.
+                               if ( empty( $term ) ) {
+                                       continue;
+                               }
+
+                               $_term = get_terms( $taxonomy, array(
+                                       'name' => $term,
+                                       'fields' => 'ids',
+                                       'hide_empty' => false,
+                               ) );
+
+                               if ( ! empty( $_term ) ) {
+                                       $clean_terms[] = intval( $_term[0] );
+                               } else {
+                                       // No existing term was found, so pass the string. A new term will be created.
+                                       $clean_terms[] = $term;
+                               }
+                       }
+
+                       $post_data['tax_input'][ $taxonomy ] = $clean_terms;
+               }
+       }
+
        add_meta( $post_ID );
 
        update_post_meta( $post_ID, '_edit_last', get_current_user_id() );
@@ -733,7 +779,7 @@ function write_post() {
 //
 
 /**
- * {@internal Missing Short Description}}
+ * Add post meta data defined in $_POST superglobal for post with given ID.
  *
  * @since 1.2.0
  *
@@ -772,7 +818,7 @@ function add_meta( $post_ID ) {
 } // add_meta
 
 /**
- * {@internal Missing Short Description}}
+ * Delete post meta data by meta ID.
  *
  * @since 1.2.0
  *
@@ -803,7 +849,7 @@ function get_meta_keys() {
 }
 
 /**
- * {@internal Missing Short Description}}
+ * Get post meta data by meta ID.
  *
  * @since 2.1.0
  *
@@ -815,9 +861,7 @@ function get_post_meta_by_id( $mid ) {
 }
 
 /**
- * {@internal Missing Short Description}}
- *
- * Some postmeta stuff.
+ * Get meta data for the given post ID.
  *
  * @since 1.2.0
  *
@@ -833,7 +877,7 @@ function has_meta( $postid ) {
 }
 
 /**
- * {@internal Missing Short Description}}
+ * Update post meta data by meta ID.
  *
  * @since 1.2.0
  *
@@ -995,6 +1039,7 @@ function wp_edit_posts_query( $q = false ) {
                $query['order'] = 'asc';
                $query['posts_per_page'] = -1;
                $query['posts_per_archive_page'] = -1;
+               $query['fields'] = 'id=>parent';
        }
 
        if ( ! empty( $q['show_sticky'] ) )
@@ -1006,7 +1051,7 @@ function wp_edit_posts_query( $q = false ) {
 }
 
 /**
- * {@internal Missing Short Description}}
+ * Get all available post MIME types for a given post type.
  *
  * @since 2.5.0
  *
@@ -1021,32 +1066,34 @@ function get_available_post_mime_types($type = 'attachment') {
 }
 
 /**
- * Executes a query for attachments. An array of WP_Query arguments
- * can be passed in, which will override the arguments set by this function.
+ * Get the query variables for the current attachments request.
  *
- * @since 2.5.0
+ * @since 4.2.0
  *
- * @param array|bool $q Array of query variables to use to build the query or false to use $_GET superglobal.
- * @return array
+ * @param array|false $q Optional. Array of query variables to use to build the query or false
+ *                       to use $_GET superglobal. Default false.
+ * @return array The parsed query vars.
  */
-function wp_edit_attachments_query( $q = false ) {
-       if ( false === $q )
+function wp_edit_attachments_query_vars( $q = false ) {
+       if ( false === $q ) {
                $q = $_GET;
-
+       }
        $q['m']   = isset( $q['m'] ) ? (int) $q['m'] : 0;
        $q['cat'] = isset( $q['cat'] ) ? (int) $q['cat'] : 0;
        $q['post_type'] = 'attachment';
        $post_type = get_post_type_object( 'attachment' );
        $states = 'inherit';
-       if ( current_user_can( $post_type->cap->read_private_posts ) )
+       if ( current_user_can( $post_type->cap->read_private_posts ) ) {
                $states .= ',private';
+       }
 
        $q['post_status'] = isset( $q['status'] ) && 'trash' == $q['status'] ? 'trash' : $states;
        $q['post_status'] = isset( $q['attachment-filter'] ) && 'trash' == $q['attachment-filter'] ? 'trash' : $states;
 
        $media_per_page = (int) get_user_option( 'upload_per_page' );
-       if ( empty( $media_per_page ) || $media_per_page < 1 )
+       if ( empty( $media_per_page ) || $media_per_page < 1 ) {
                $media_per_page = 20;
+       }
 
        /**
         * Filter the number of items to list per page when listing media items.
@@ -1058,10 +1105,9 @@ function wp_edit_attachments_query( $q = false ) {
        $q['posts_per_page'] = apply_filters( 'upload_per_page', $media_per_page );
 
        $post_mime_types = get_post_mime_types();
-       $avail_post_mime_types = get_available_post_mime_types('attachment');
-
-       if ( isset($q['post_mime_type']) && !array_intersect( (array) $q['post_mime_type'], array_keys($post_mime_types) ) )
+       if ( isset($q['post_mime_type']) && !array_intersect( (array) $q['post_mime_type'], array_keys($post_mime_types) ) ) {
                unset($q['post_mime_type']);
+       }
 
        foreach( array_keys( $post_mime_types ) as $type ) {
                if ( isset( $q['attachment-filter'] ) && "post_mime_type:$type" == $q['attachment-filter'] ) {
@@ -1074,9 +1120,25 @@ function wp_edit_attachments_query( $q = false ) {
                $q['post_parent'] = 0;
        }
 
-       wp( $q );
+       return $q;
+}
 
-       return array($post_mime_types, $avail_post_mime_types);
+/**
+ * Executes a query for attachments. An array of WP_Query arguments
+ * can be passed in, which will override the arguments set by this function.
+ *
+ * @since 2.5.0
+ *
+ * @param array|false $q Array of query variables to use to build the query or false to use $_GET superglobal.
+ * @return array
+ */
+function wp_edit_attachments_query( $q = false ) {
+       wp( wp_edit_attachments_query_vars( $q ) );
+
+       $post_mime_types = get_post_mime_types();
+       $avail_post_mime_types = get_available_post_mime_types( 'attachment' );
+
+       return array( $post_mime_types, $avail_post_mime_types );
 }
 
 /**
@@ -1137,7 +1199,7 @@ function get_sample_permalink($id, $title = null, $name = null) {
        $original_name = $post->post_name;
 
        // Hack: get_permalink() would return ugly permalink for drafts, so we will fake that our post is published.
-       if ( in_array( $post->post_status, array( 'draft', 'pending' ) ) ) {
+       if ( in_array( $post->post_status, array( 'draft', 'pending', 'future' ) ) ) {
                $post->post_status = 'publish';
                $post->post_name = sanitize_title($post->post_name ? $post->post_name : $post->post_title, $post->ID);
        }
@@ -1159,9 +1221,11 @@ function get_sample_permalink($id, $title = null, $name = null) {
        // Handle page hierarchy
        if ( $ptype->hierarchical ) {
                $uri = get_page_uri($post);
-               $uri = untrailingslashit($uri);
-               $uri = strrev( stristr( strrev( $uri ), '/' ) );
-               $uri = untrailingslashit($uri);
+               if ( $uri ) {
+                       $uri = untrailingslashit($uri);
+                       $uri = strrev( stristr( strrev( $uri ), '/' ) );
+                       $uri = untrailingslashit($uri);
+               }
 
                /** This filter is documented in wp-admin/edit-tag-form.php */
                $uri = apply_filters( 'editable_slug', $uri );
@@ -1230,6 +1294,7 @@ function get_sample_permalink_html( $id, $new_title = null, $new_slug = null ) {
 
                $post_name_html = '<span id="editable-post-name" title="' . $title . '">' . $post_name_abridged . '</span>';
                $display_link = str_replace( array( '%pagename%', '%postname%' ), $post_name_html, urldecode( $permalink ) );
+               $pretty_permalink = str_replace( array( '%pagename%', '%postname%' ), $post_name, urldecode( $permalink ) );
 
                $return =  '<strong>' . __( 'Permalink:' ) . "</strong>\n";
                $return .= '<span id="sample-permalink" tabindex="-1">' . $display_link . "</span>\n";
@@ -1245,7 +1310,11 @@ function get_sample_permalink_html( $id, $new_title = null, $new_slug = null ) {
                        $preview_link = apply_filters( 'preview_post_link', add_query_arg( 'preview', 'true', $preview_link ), $post );
                        $return .= "<span id='view-post-btn'><a href='" . esc_url( $preview_link ) . "' class='button button-small' target='wp-preview-{$post->ID}'>$view_post</a></span>\n";
                } else {
-                       $return .= "<span id='view-post-btn'><a href='" . get_permalink( $post ) . "' class='button button-small'>$view_post</a></span>\n";
+                       if ( empty( $pretty_permalink ) ) {
+                               $pretty_permalink = $permalink;
+                       }
+
+                       $return .= "<span id='view-post-btn'><a href='" . $pretty_permalink . "' class='button button-small'>$view_post</a></span>\n";
                }
        }
 
@@ -1487,7 +1556,7 @@ function _admin_notice_post_locked() {
                        <div class="post-locked-avatar"></div>
                        <p class="wp-tab-first" tabindex="0">
                        <span class="currently-editing"></span><br />
-                       <span class="locked-saving hidden"><img src="images/wpspin_light-2x.gif" width="16" height="16" /> <?php _e('Saving revision...'); ?></span>
+                       <span class="locked-saving hidden"><img src="<?php echo esc_url( admin_url( 'images/spinner-2x.gif' ) ); ?>" width="16" height="16" /> <?php _e('Saving revision...'); ?></span>
                        <span class="locked-saved hidden"><?php _e('Your latest changes were saved as a revision.'); ?></span>
                        </p>
                        <?php
@@ -1603,7 +1672,7 @@ function post_preview() {
        } else {
                $is_autosave = true;
 
-               if ( 'auto-draft' == $_POST['post_status'] )
+               if ( isset( $_POST['post_status'] ) && 'auto-draft' == $_POST['post_status'] )
                        $_POST['post_status'] = 'draft';
 
                $saved_post_id = wp_create_post_autosave( $post->ID );