id ) return; wp_enqueue_script( 'wp-lists' ); ?> id ) return $actions; unset( $actions['edit'] ); return $actions; } add_filter( 'views_edit-feedback', 'grunion_admin_view_tabs' ); function grunion_admin_view_tabs( $views ) { global $current_screen; if ( 'edit-feedback' != $current_screen->id ) return $actions; unset( $views['publish'] ); preg_match( '|post_type=feedback\'( class="current")?\>(.*)\ '', 'feedback_from' => __( 'From' ), 'feedback_message' => __( 'Message' ), 'feedback_date' => __( 'Date' ) ); return $cols; } add_action( 'manage_posts_custom_column', 'grunion_manage_post_columns', 10, 2 ); function grunion_manage_post_columns( $col, $post_id ) { global $post; switch ( $col ) { case 'feedback_from': $author_name = get_post_meta( $post_id, '_feedback_author', TRUE ); $author_email = get_post_meta( $post_id, '_feedback_author_email', TRUE ); $author_url = get_post_meta( $post_id, '_feedback_author_url', TRUE ); $author_ip = get_post_meta( $post_id, '_feedback_ip', TRUE ); $form_url = get_post_meta( $post_id, '_feedback_contact_form_url', TRUE ); $author_name_line = ''; if ( !empty( $author_name ) ) { if ( !empty( $author_email ) ) $author_name_line = get_avatar( $author_email, 32 ); $author_name_line .= "{$author_name}
"; } $author_email_line = ''; if ( !empty( $author_email ) ) { $author_email_line = ""; $author_email_line .= "{$author_email}
"; } $author_url_line = ''; if ( !empty( $author_url ) ) { $author_url_line = ""; $author_url_line .= "{$author_url}
"; } echo $author_name_line; echo $author_email_line; echo $author_url_line; echo "{$author_ip}
"; echo "{$form_url}"; break; case 'feedback_message': $post = get_post( $post_id ); $post_type_object = get_post_type_object( $post->post_type ); echo ''; echo esc_html( get_post_meta( $post_id, '_feedback_subject', TRUE ) ); echo '
'; echo sanitize_text_field( get_the_content( '' ) ); echo '
'; $extra_fields = get_post_meta( $post_id, '_feedback_extra_fields', TRUE ); if ( !empty( $extra_fields ) ) { echo '

'; echo '' . "\n"; foreach ( (array) $extra_fields as $k => $v ) { echo "\n"; } echo '
". esc_html( $k ) ."". sanitize_text_field( $v ) ."
'; } echo '
'; if ( $post->post_status == 'trash' ) { echo '' . __( 'Restore' ) . ' | '; echo " " . __( 'Delete Permanently' ) . ""; ?> post_status == 'publish' ) { echo 'Spam'; echo ' | '; echo ''; echo '' . __( 'Trash' ) . ''; ?> post_status == 'spam' ) { echo 'Not Spam'; echo ' | '; echo " " . __( 'Delete Permanently' ) . ""; ?> $field ) { # need to dig deeper on select field options if ( preg_match( "|^(.*)\-select$|", $field_id ) ) { foreach ( (array) $field['options'] as $opt_i => $opt ) { $contact_form_fields[$field_id]['options'][$opt_i] = html_entity_decode( $opt ); } } $contact_form_fields[$field_id]['label'] = html_entity_decode( $contact_form_fields[$field_id]['label'] ); $contact_form_fields[$field_id]['label'] = wp_kses( $contact_form_fields[$field_id]['label'], array() ); } $out = array( 'fields' => $contact_form_fields, 'to' => $grunion_form->to, 'subject' => $grunion_form->subject ); die( json_encode( $out ) ); } } die( '' ); } die( -1 ); } add_action( 'wp_ajax_grunion_shortcode', 'grunion_ajax_shortcode' ); add_action( 'wp_ajax_grunion_shortcode_to_json', 'grunion_ajax_shortcode_to_json' ); // process row-action spam/not spam clicks add_action( 'wp_ajax_grunion_ajax_spam', 'grunion_ajax_spam' ); function grunion_ajax_spam() { global $wpdb; if ( empty( $_POST['make_it'] ) ) return; $post_id = (int) $_POST['post_id']; check_ajax_referer( 'grunion-post-status-' . $post_id ); if ( !current_user_can("edit_page", $post_id) ) wp_die( __( 'You are not allowed to manage this item.' ) ); require_once dirname( __FILE__ ) . '/grunion-contact-form.php'; $current_menu = ''; if ( preg_match( '|post_type=feedback|', $_POST['sub_menu'] ) ) { if ( preg_match( '|post_status=spam|', $_POST['sub_menu'] ) ) $current_menu = 'spam'; else if ( preg_match( '|post_status=trash|', $_POST['sub_menu'] ) ) $current_menu = 'trash'; else $current_menu = 'messages'; } $post = get_post( $post_id ); $post_type_object = get_post_type_object( $post->post_type ); $akismet_values = get_post_meta( $post_id, '_feedback_akismet_values', TRUE ); if ( $_POST['make_it'] == 'spam' ) { $post->post_status = 'spam'; $status = wp_insert_post( $post ); wp_transition_post_status( 'spam', 'publish', $post ); do_action( 'contact_form_akismet', 'spam', $akismet_values ); } elseif ( $_POST['make_it'] == 'ham' ) { $post->post_status = 'publish'; $status = wp_insert_post( $post ); wp_transition_post_status( 'publish', 'spam', $post ); do_action( 'contact_form_akismet', 'spam', $akismet_values ); // resend the original email $email = get_post_meta( $post_id, '_feedback_email', TRUE ); wp_mail( $email['to'], $email['subject'], $email['message'], $email['headers'] ); } elseif( $_POST['make_it'] == 'publish' ) { if ( !current_user_can($post_type_object->cap->delete_post, $post_id) ) wp_die( __('You are not allowed to move this item out of the Trash.') ); if ( ! wp_untrash_post($post_id) ) wp_die( __('Error in restoring from Trash.') ); } elseif( $_POST['make_it'] == 'trash' ) { if ( !current_user_can($post_type_object->cap->delete_post, $post_id) ) wp_die( __('You are not allowed to move this item to the Trash.') ); if ( ! wp_trash_post($post_id) ) wp_die( __('Error in moving to Trash.') ); } $sql = " SELECT post_status, COUNT( * ) AS post_count FROM `{$wpdb->posts}` WHERE post_type = 'feedback' GROUP BY post_status "; $status_count = (array) $wpdb->get_results( $sql, ARRAY_A ); $status = array(); $status_html = ''; foreach ( $status_count as $i => $row ) { $status[$row['post_status']] = $row['post_count']; } if ( isset( $status['publish'] ) ) { $status_html .= '
  • '; $status_html .= '(' . number_format( $status['publish'] ) . ')'; $status_html .= ' |
  • '; } if ( isset( $status['trash'] ) ) { $status_html .= '
  • '; $status_html .= '(' . number_format( $status['trash'] ) . ')'; $status_html .= ''; if ( isset( $status['spam'] ) ) $status_html .= ' |'; $status_html .= '
  • '; } if ( isset( $status['spam'] ) ) { $status_html .= '
  • '; $status_html .= '(' . number_format( $status['spam'] ) . ')'; $status_html .= '
  • '; } echo $status_html; exit; }