'.__( 'Error: not logged in.', 'p2' ).'

' ); } $post_id = $_GET['post_ID']; $post_id = substr( $post_id, strpos( $post_id, '-' ) + 1 ); if ( !current_user_can( 'edit_post', $post_id ) ) { die( '

'.__( 'Error: not allowed to edit post.', 'p2' ).'

' ); } // Don't treat the post differently based on user's visual editor setting. // If the user has disabled the visual editor, the post_content goes through an "extra" esc_textarea(). add_filter( 'user_can_richedit', '__return_true' ); $post = get_post( $post_id, OBJECT, 'edit' ); function get_tag_name( $tag ) { return $tag->name; } $tags = array_map( 'get_tag_name', wp_get_post_tags( $post_id ) ); $post_format = p2_get_post_format( $post_id ); // handle page as post_type if ( 'page' == $post->post_type ) { $post_format = ''; $tags = ''; } add_filter( 'user_can_richedit', '__return_false' ); $post->post_content = apply_filters( 'the_editor_content', $post->post_content ); echo json_encode( array( 'title' => $post->post_title, 'content' => $post->post_content, 'post_format' => $post_format, 'post_type' => $post->post_type, 'tags' => $tags, ) ); } /* * Get comment to edit. */ static function get_comment() { check_ajax_referer( 'ajaxnonce', '_inline_edit' ); if ( !is_user_logged_in() ) { die( '

'.__( 'Error: not logged in.', 'p2' ).'

' ); } $comment_id = $_GET['comment_ID']; $comment_id = substr( $comment_id, strpos( $comment_id, '-' ) + 1); $comment = get_comment($comment_id); echo apply_filters( 'p2_get_comment_content', $comment->comment_content, $comment_id ); } /* * Edit a post. */ static function save_post() { check_ajax_referer( 'ajaxnonce', '_inline_edit' ); if ( !is_user_logged_in() ) { die( '

'.__( 'Error: not logged in.', 'p2' ).'

' ); } $post_id = $_POST['post_ID']; $post_id = substr( $post_id, strpos( $post_id, '-' ) + 1 ); if ( !current_user_can( 'edit_post', $post_id )) { die( '

'.__( 'Error: not allowed to edit post.', 'p2' ).'

' ); } $post_format = p2_get_post_format( $post_id ); $new_post_content = $_POST['content']; // Add the quote citation to the content if it exists if ( ! empty( $_POST['citation'] ) && 'quote' == $post_format ) { $new_post_content = '

' . $new_post_content . '

' . $_POST['citation'] . ''; } $new_tags = $_POST['tags']; $new_post_title = isset( $_POST['title'] ) ? $_POST['title'] : ''; if ( ! empty( $new_post_title ) ) $post_title = $new_post_title; else $post_title = p2_title_from_content( $new_post_content ); $post = wp_update_post( array( 'post_title' => $post_title, 'post_content' => $new_post_content, 'post_modified' => current_time( 'mysql' ), 'post_modified_gmt' => current_time( 'mysql', 1), 'ID' => $post_id ) ); $tags = wp_set_post_tags( $post_id, $new_tags ); $post = get_post( $post ); $GLOBALS['post'] = $post; if ( !$post ) die( '-1' ); if ( 'quote' == $post_format ) $content = apply_filters( 'p2_get_quote_content', $post->post_content ); else $content = apply_filters( 'the_content', $post->post_content ); echo json_encode( array( 'title' => $post->post_title, 'content' => $content, 'tags' => get_tags_with_count( $post, '', __( '
Tags:' , 'p2' ) . ' ', ', ', '  ' ), ) ); } /* * Edit a comment. */ static function save_comment() { check_ajax_referer( 'ajaxnonce', '_inline_edit' ); if ( !is_user_logged_in() ) { die( '

'.__( 'Error: not logged in.', 'p2' ).'

' ); } $comment_id = $_POST['comment_ID']; $comment_id = substr( $comment_id, strpos( $comment_id, '-' ) + 1); $comment = get_comment( $comment_id ); if ( !current_user_can( 'edit_post', $comment->comment_post_ID ) ) { die( '

'.__( 'Error: not allowed to edit this comment.', 'p2' ).'

' ); } $comment_content = $_POST['comment_content']; wp_update_comment( array( 'comment_content' => $comment_content, 'comment_ID' => $comment_id )); $comment = get_comment( $comment_id ); echo apply_filters( 'comment_text', $comment->comment_content, $comment ); } /* * Create a post. */ static function new_post() { global $user_ID; if ( empty( $_POST['action'] ) || $_POST['action'] != 'new_post' ) { die( '-1' ); } if ( !is_user_logged_in() ) { die( '

'.__( 'Error: not logged in.', 'p2' ).'

' ); } if ( ! ( current_user_can( 'publish_posts' ) || (get_option( 'p2_allow_users_publish' ) && $user_ID )) ) { die( '

'.__( 'Error: not allowed to post.', 'p2' ).'

' ); } check_ajax_referer( 'ajaxnonce', '_ajax_post' ); $user = wp_get_current_user(); $user_id = $user->ID; $post_content = $_POST['posttext']; $tags = trim( $_POST['tags'] ); $title = $_POST['post_title']; $post_type = isset( $_POST['post_type'] ) ? $_POST['post_type'] : 'post'; // Strip placeholder text for tags if ( __( 'Tag it', 'p2' ) == $tags ) $tags = ''; // For empty or placeholder text, create a nice title based on content if ( empty( $title ) || __( 'Post Title', 'p2' ) == $title ) $post_title = p2_title_from_content( $post_content ); else $post_title = $title; $post_format = 'status'; $accepted_post_formats = apply_filters( 'p2_accepted_post_cats', p2_get_supported_post_formats() ); // Keep 'p2_accepted_post_cats' filter for back compat (since P2 1.3.4) if ( in_array( $_POST['post_format'], $accepted_post_formats ) ) $post_format = $_POST['post_format']; // Add the quote citation to the content if it exists if ( ! empty( $_POST['post_citation'] ) && 'quote' == $post_format ) $post_content = '

' . $post_content . '

' . $_POST['post_citation'] . ''; $post_id = wp_insert_post( array( 'post_author' => $user_id, 'post_title' => $post_title, 'post_content' => $post_content, 'post_type' => 'post', 'tags_input' => $tags, 'post_status' => 'publish' ) ); if ( empty( $post_id ) ) echo '0'; set_post_format( $post_id, $post_format ); echo $post_id; } }