/svntrunk/bp-forums/bbpress/bb-admin/posts.php
https://bitbucket.org/simplemediacode/bptrunk · PHP · 195 lines · 158 code · 37 blank · 0 comment · 19 complexity · f20a7e13120e941e4db33d933b1694cd MD5 · raw file
- <?php
- require_once('admin.php');
- if ( 'post' == strtolower( $_SERVER['REQUEST_METHOD'] ) ) {
- bb_check_admin_referer( 'post-bulk' );
- $post_ids = array_map( 'absint', $_POST['post'] );
- $count = 0;
- $action = trim( $_POST['action'] );
- switch ( $action ) {
- case 'delete' :
- foreach ( $post_ids as $post_id ) {
- $count += (int) (bool) bb_delete_post( $post_id, 1 );
- }
- $query_vars = array( 'message' => 'deleted', 'count' => $count );
- break;
- case 'undelete' :
- foreach ( $post_ids as $post_id ) {
- $count += (int) (bool) bb_delete_post( $post_id, 0 );
- }
- $query_vars = array( 'message' => 'undeleted', 'count' => $count );
- break;
- default :
- if ( $action )
- $query_vars = apply_filters( "bulk_post__$action", array(), $post_ids, $action );
- break;
- }
- bb_safe_redirect( add_query_arg( $query_vars ) );
- exit;
- }
- if ( !empty( $_GET['message'] ) ) {
- $message_count = isset( $_GET['count'] ) ? (int) $_GET['count'] : 1;
- switch ( (string) $_GET['message'] ) {
- case 'undeleted':
- bb_admin_notice( sprintf( _n( '<strong>Post undeleted.</strong>', '<strong>%s posts undeleted.</strong>', $message_count ), bb_number_format_i18n( $message_count ) ) );
- break;
- case 'deleted':
- bb_admin_notice( sprintf( _n( '<strong>Post deleted.</strong>', '<strong>%s posts deleted.</strong>', $message_count ), bb_number_format_i18n( $message_count ) ) );
- break;
- case 'spammed':
- bb_admin_notice( sprintf( _n( '<strong>Post spammed.</strong>', '<strong>%s posts spammed.</strong>', $message_count ), bb_number_format_i18n( $message_count ) ) );
- break;
- case 'unspammed-normal':
- bb_admin_notice( sprintf( _n( '<strong>Post removed from spam.</strong> It is now a normal post.', '<strong>%s posts removed from spam.</strong> They are now normal posts.', $message_count ), bb_number_format_i18n( $message_count ) ) );
- break;
- case 'unspammed-deleted':
- bb_admin_notice( sprintf( _n( '<strong>Post removed from spam.</strong> It is now a deleted post.', '<strong>%s posts removed from spam.</strong> They are nowdeleted posts.', $message_count ), bb_number_format_i18n( $message_count ) ) );
- break;
- }
- }
- $ip_available = false;
- if ( bb_current_user_can( 'view_by_ip' ) ) {
- $ip_available = true;
- } elseif (isset($_GET['poster_ip'])) {
- unset( $_GET['poster_ip'] );
- }
- $bb_admin_body_class = ' bb-admin-posts';
- bb_get_admin_header();
- if ( !bb_current_user_can('browse_deleted') )
- die(__("Now how'd you get here? And what did you think you'd being doing?")); //This should never happen.
- add_filter( 'get_topic_where', 'bb_no_where' );
- add_filter( 'get_topic_link', 'bb_make_link_view_all' );
- add_filter( 'post_edit_uri', 'bb_make_link_view_all' );
- $post_query = new BB_Query_Form( 'post', array( 'post_status' => 'normal', 'count' => true, 'per_page' => 20 ) );
- $bb_posts =& $post_query->results;
- $total = $post_query->found_rows;
- ?>
- <div class="wrap">
- <h2><?php _e( 'Posts' ); ?>
- <?php
- $h2_search = $post_query->get( 'post_text' );
- $h2_forum = $post_query->get( 'forum_id' );
- $h2_tag = $post_query->get( 'tag_id' );
- $h2_author = $post_query->get( 'post_author_id' );
- $h2_search = $h2_search ? ' ' . sprintf( __('containing “%s”'), esc_html( $h2_search ) ) : '';
- $h2_forum = $h2_forum ? ' ' . sprintf( __('in “%s”') , get_forum_name( $h2_forum ) ) : '';
- $h2_tag = $h2_tag ? ' ' . sprintf( __('with tag “%s”'), esc_html( bb_get_tag_name( $h2_tag ) ) ) : '';
- $h2_author = $h2_author ? ' ' . sprintf( __('by %s') , esc_html( get_user_name( $h2_author ) ) ) : '';
- if ($ip_available) {
- $h2_ip = $post_query->get( 'poster_ip' );
- $h2_ip = $h2_ip ? ' ' . sprintf( __('from IP address %s'), esc_html( $h2_ip ) ) : '';
- } else {
- $h2_ip = '';
- }
- if ( $h2_search || $h2_forum || $h2_tag || $h2_author || $h2_ip ) {
- echo '<span class="subtitle">';
-
- printf( __( '%1$s%2$s%3$s%4$s%5$s' ), $h2_search, $h2_forum, $h2_tag, $h2_author, $h2_ip );
-
- echo '</span>';
- }
- ?>
- </h2>
- <?php
- do_action( 'bb_admin_notices' );
- $post_query->form( array( 'poster_ip' => $ip_available, 'tag' => true, 'post_author' => true, 'post_status' => true, 'submit' => __( 'Filter' ) ) );
- $bulk_actions = array(
- 'delete' => __( 'Delete' ),
- 'undelete' => __( 'Undelete' ),
- );
- if ( is_numeric( $bulk_action = $post_query->get( 'post_status' ) ) ) {
- switch ( $bulk_action ) {
- case 0 :
- unset( $bulk_actions['undelete'] );
- break;
- case 1 :
- unset( $bulk_actions['delete'] );
- }
- }
- unset( $bulk_action );
- do_action_ref_array( 'bulk_post_actions', array( &$bulk_actions, &$post_query ) );
- ?>
- <div class="clear"></div>
- <form class="table-form bulk-form" method="post" action="">
- <fieldset>
- <select name="action">
- <option><?php _e( 'Bulk Actions' ); ?></option>
- <?php foreach ( $bulk_actions as $value => $label ) : ?>
- <option value="<?php echo esc_attr( $value ); ?>"><?php echo esc_html( $label ); ?></option>
- <?php endforeach; ?>
- </select>
- <input type="submit" value="<?php esc_attr_e( 'Apply' ); ?>" class="button submit-input" />
- <?php bb_nonce_field( 'post-bulk' ); ?>
- </fieldset>
- <div class="tablenav">
- <?php if ( $total ) : ?>
- <div class="tablenav-pages">
- <span class="displaying-num"><?php echo $displaying_num = sprintf(
- __( '%1$s to %2$s of %3$s' ),
- bb_number_format_i18n( ( $page - 1 ) * $post_query->get( 'per_page' ) + 1 ),
- $page * $post_query->get( 'per_page' ) < $total ? bb_number_format_i18n( $page * $post_query->get( 'per_page' ) ) : '<span class="total-type-count">' . bb_number_format_i18n( $total ) . '</span>',
- '<span class="total-type-count">' . bb_number_format_i18n( $total ) . '</span>'
- ); ?></span><span class="displaying-pages">
- <?php
- $_page_link_args = array(
- 'page' => $page,
- 'total' => $total,
- 'per_page' => $post_query->get( 'per_page' ),
- 'mod_rewrite' => false,
- 'prev_text' => __( '«' ),
- 'next_text' => __( '»' )
- );
- echo $page_number_links = get_page_number_links( $_page_link_args );
- ?></span>
- <div class="clear"></div>
- </div>
- <?php endif; ?>
- </div>
- <div class="clear"></div>
- <?php bb_admin_list_posts(); ?>
- </form>
- <div class="tablenav bottom">
- <?php if ( $total ) : ?>
- <div class="tablenav-pages">
- <span class="displaying-pages"><?php echo $page_number_links; ?></span>
- <div class="clear"></div>
- </div>
- <?php endif; ?>
- </div>
- <div class="clear"></div>
- </div>
- <?php bb_get_admin_footer(); ?>