home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Blogs / wordpress2.6.exe / wordpress2.6 / wp-admin / edit.php < prev    next >
Encoding:
PHP Script  |  2008-05-27  |  7.8 KB  |  245 lines

  1. <?php
  2. require_once('admin.php');
  3.  
  4. // Handle bulk deletes
  5. if ( isset($_GET['deleteit']) && isset($_GET['delete']) ) {
  6.     check_admin_referer('bulk-posts');
  7.     foreach( (array) $_GET['delete'] as $post_id_del ) {
  8.         $post_del = & get_post($post_id_del);
  9.  
  10.         if ( !current_user_can('delete_post', $post_id_del) )
  11.             wp_die( __('You are not allowed to delete this post.') );
  12.  
  13.         if ( $post_del->post_type == 'attachment' ) {
  14.             if ( ! wp_delete_attachment($post_id_del) )
  15.                 wp_die( __('Error in deleting...') );
  16.         } else {
  17.             if ( !wp_delete_post($post_id_del) )
  18.                 wp_die( __('Error in deleting...') );
  19.         }
  20.     }
  21.  
  22.     $sendback = wp_get_referer();
  23.     if (strpos($sendback, 'post.php') !== false) $sendback = admin_url('post-new.php');
  24.     elseif (strpos($sendback, 'attachments.php') !== false) $sendback = admin_url('attachments.php');
  25.     $sendback = preg_replace('|[^a-z0-9-~+_.?#=&;,/:]|i', '', $sendback);
  26.  
  27.     wp_redirect($sendback);
  28.     exit();
  29. } elseif ( !empty($_GET['_wp_http_referer']) ) {
  30.      wp_redirect(remove_query_arg(array('_wp_http_referer', '_wpnonce'), stripslashes($_SERVER['REQUEST_URI'])));
  31.      exit;
  32. }
  33.  
  34. $title = __('Posts');
  35. $parent_file = 'edit.php';
  36. wp_enqueue_script('admin-forms');
  37.  
  38. list($post_stati, $avail_post_stati) = wp_edit_posts_query();
  39.  
  40. if ( 1 == count($posts) && is_singular() )
  41.     wp_enqueue_script( 'admin-comments' );
  42. require_once('admin-header.php');
  43.  
  44. if ( !isset( $_GET['paged'] ) )
  45.     $_GET['paged'] = 1;
  46.  
  47. ?>
  48.  
  49. <div class="wrap">
  50.  
  51. <form id="posts-filter" action="" method="get">
  52. <h2><?php
  53. if ( is_single() ) {
  54.     printf(__('Comments on %s'), apply_filters( "the_title", $post->post_title));
  55. } else {
  56.     $post_status_label = _c('Manage Posts|manage posts header');
  57.     if ( isset($_GET['post_status']) && in_array( $_GET['post_status'], array_keys($post_stati) ) )
  58.         $post_status_label = $post_stati[$_GET['post_status']][1];
  59.     if ( $post_listing_pageable && !is_archive() && !is_search() )
  60.         $h2_noun = is_paged() ? sprintf(__( 'Previous %s' ), $post_status_label) : sprintf(__('Latest %s'), $post_status_label);
  61.     else
  62.         $h2_noun = $post_status_label;
  63.     // Use $_GET instead of is_ since they can override each other
  64.     $h2_author = '';
  65.     $_GET['author'] = (int) $_GET['author'];
  66.     if ( $_GET['author'] != 0 ) {
  67.         if ( $_GET['author'] == '-' . $user_ID ) { // author exclusion
  68.             $h2_author = ' ' . __('by other authors');
  69.         } else {
  70.             $author_user = get_userdata( get_query_var( 'author' ) );
  71.             $h2_author = ' ' . sprintf(__('by %s'), wp_specialchars( $author_user->display_name ));
  72.         }
  73.     }
  74.     $h2_search = isset($_GET['s'])   && $_GET['s']   ? ' ' . sprintf(__('matching “%s”'), wp_specialchars( get_search_query() ) ) : '';
  75.     $h2_cat    = isset($_GET['cat']) && $_GET['cat'] ? ' ' . sprintf( __('in “%s”'), single_cat_title('', false) ) : '';
  76.     $h2_tag    = isset($_GET['tag']) && $_GET['tag'] ? ' ' . sprintf( __('tagged with “%s”'), single_tag_title('', false) ) : '';
  77.     $h2_month  = isset($_GET['m'])   && $_GET['m']   ? ' ' . sprintf( __('during %s'), single_month_title(' ', false) ) : '';
  78.     printf( _c( '%1$s%2$s%3$s%4$s%5$s%6$s|You can reorder these: 1: Posts, 2: by {s}, 3: matching {s}, 4: in {s}, 5: tagged with {s}, 6: during {s}' ), $h2_noun, $h2_author, $h2_search, $h2_cat, $h2_tag, $h2_month );
  79. }
  80. ?></h2>
  81.  
  82. <ul class="subsubsub">
  83. <?php
  84. $status_links = array();
  85. $num_posts = wp_count_posts( 'post', 'readable' );
  86. $class = empty( $_GET['post_status'] ) ? ' class="current"' : '';
  87. $status_links[] = "<li><a href='edit.php' $class>" . __('All Posts') . '</a>';
  88. foreach ( $post_stati as $status => $label ) {
  89.     $class = '';
  90.  
  91.     if ( !in_array( $status, $avail_post_stati ) )
  92.         continue;
  93.  
  94.     if ( empty( $num_posts->$status ) )
  95.         continue;
  96.     if ( $status == $_GET['post_status'] )
  97.         $class = ' class="current"';
  98.  
  99.     $status_links[] = "<li><a href='edit.php?post_status=$status' $class>" .
  100.     sprintf( __ngettext( $label[2][0], $label[2][1], $num_posts->$status ), number_format_i18n( $num_posts->$status ) ) . '</a>';
  101. }
  102. echo implode( ' |</li>', $status_links ) . '</li>';
  103. unset( $status_links );
  104. ?>
  105. </ul>
  106.  
  107. <?php if ( isset($_GET['post_status'] ) ) : ?>
  108. <input type="hidden" name="post_status" value="<?php echo attribute_escape($_GET['post_status']) ?>" />
  109. <?php
  110. endif;
  111.  
  112. if ( isset($_GET['posted']) && $_GET['posted'] ) : $_GET['posted'] = (int) $_GET['posted']; ?>
  113. <div id="message" class="updated fade"><p><strong><?php _e('Your post has been saved.'); ?></strong> <a href="<?php echo get_permalink( $_GET['posted'] ); ?>"><?php _e('View post'); ?></a> | <a href="post.php?action=edit&post=<?php echo $_GET['posted']; ?>"><?php _e('Edit post'); ?></a></p></div>
  114. <?php $_SERVER['REQUEST_URI'] = remove_query_arg(array('posted'), $_SERVER['REQUEST_URI']);
  115. endif;
  116. ?>
  117.  
  118. <p id="post-search">
  119.     <label class="hidden" for="post-search-input"><?php _e( 'Search Posts' ); ?>:</label>
  120.     <input type="text" id="post-search-input" name="s" value="<?php the_search_query(); ?>" />
  121.     <input type="submit" value="<?php _e( 'Search Posts' ); ?>" class="button" />
  122. </p>
  123.  
  124. <div class="tablenav">
  125.  
  126. <?php
  127. $page_links = paginate_links( array(
  128.     'base' => add_query_arg( 'paged', '%#%' ),
  129.     'format' => '',
  130.     'total' => $wp_query->max_num_pages,
  131.     'current' => $_GET['paged']
  132. ));
  133.  
  134. if ( $page_links )
  135.     echo "<div class='tablenav-pages'>$page_links</div>";
  136. ?>
  137.  
  138. <div class="alignleft">
  139. <input type="submit" value="<?php _e('Delete'); ?>" name="deleteit" class="button-secondary delete" />
  140. <?php wp_nonce_field('bulk-posts'); ?>
  141. <?php
  142. if ( !is_singular() ) {
  143. $arc_query = "SELECT DISTINCT YEAR(post_date) AS yyear, MONTH(post_date) AS mmonth FROM $wpdb->posts WHERE post_type = 'post' ORDER BY post_date DESC";
  144.  
  145. $arc_result = $wpdb->get_results( $arc_query );
  146.  
  147. $month_count = count($arc_result);
  148.  
  149. if ( $month_count && !( 1 == $month_count && 0 == $arc_result[0]->mmonth ) ) { ?>
  150. <select name='m'>
  151. <option<?php selected( @$_GET['m'], 0 ); ?> value='0'><?php _e('Show all dates'); ?></option>
  152. <?php
  153. foreach ($arc_result as $arc_row) {
  154.     if ( $arc_row->yyear == 0 )
  155.         continue;
  156.     $arc_row->mmonth = zeroise( $arc_row->mmonth, 2 );
  157.  
  158.     if ( $arc_row->yyear . $arc_row->mmonth == $_GET['m'] )
  159.         $default = ' selected="selected"';
  160.     else
  161.         $default = '';
  162.  
  163.     echo "<option$default value='$arc_row->yyear$arc_row->mmonth'>";
  164.     echo $wp_locale->get_month($arc_row->mmonth) . " $arc_row->yyear";
  165.     echo "</option>\n";
  166. }
  167. ?>
  168. </select>
  169. <?php } ?>
  170.  
  171. <?php
  172. $dropdown_options = array('show_option_all' => __('View all categories'), 'hide_empty' => 0, 'hierarchical' => 1,
  173.     'show_count' => 0, 'orderby' => 'name', 'selected' => $cat);
  174. wp_dropdown_categories($dropdown_options);
  175. do_action('restrict_manage_posts');
  176. ?>
  177. <input type="submit" id="post-query-submit" value="<?php _e('Filter'); ?>" class="button-secondary" />
  178.  
  179. <?php } ?>
  180. </div>
  181.  
  182. <br class="clear" />
  183. </div>
  184.  
  185. <br class="clear" />
  186.  
  187. <?php include( 'edit-post-rows.php' ); ?>
  188.  
  189. </form>
  190.  
  191. <div id="ajax-response"></div>
  192.  
  193. <div class="tablenav">
  194.  
  195. <?php
  196. if ( $page_links )
  197.     echo "<div class='tablenav-pages'>$page_links</div>";
  198. ?>
  199.  
  200. <br class="clear" />
  201. </div>
  202.  
  203. <br class="clear" />
  204.  
  205. <?php
  206.  
  207. if ( 1 == count($posts) && is_singular() ) :
  208.  
  209.     $comments = $wpdb->get_results( $wpdb->prepare("SELECT * FROM $wpdb->comments WHERE comment_post_ID = %d AND comment_approved != 'spam' ORDER BY comment_date", $id) );
  210.     if ( $comments ) :
  211.         // Make sure comments, post, and post_author are cached
  212.         update_comment_cache($comments);
  213.         $post = get_post($id);
  214.         $authordata = get_userdata($post->post_author);
  215.     ?>
  216.  
  217. <br class="clear" />
  218.  
  219. <table class="widefat" style="margin-top: .5em">
  220. <thead>
  221.   <tr>
  222.     <th scope="col"><?php _e('Comment') ?></th>
  223.     <th scope="col"><?php _e('Date') ?></th>
  224.     <th scope="col"><?php _e('Actions') ?></th>
  225.   </tr>
  226. </thead>
  227. <tbody id="the-comment-list" class="list:comment">
  228. <?php
  229.     foreach ($comments as $comment)
  230.         _wp_comment_row( $comment->comment_ID, 'detail', false, false );
  231. ?>
  232. </tbody>
  233. </table>
  234.  
  235. <?php
  236.  
  237. endif; // comments
  238. endif; // posts;
  239.  
  240. ?>
  241.  
  242. </div>
  243.  
  244. <?php include('admin-footer.php'); ?>
  245.