]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/edit.php
Wordpress 2.3.3
[autoinstalls/wordpress.git] / wp-admin / edit.php
1 <?php
2 require_once('admin.php');
3
4 $title = __('Posts');
5 $parent_file = 'edit.php';
6 wp_enqueue_script( 1 == $_GET['c'] ? 'admin-comments' : 'listman' );
7 require_once('admin-header.php');
8
9 $_GET['m']   = (int) $_GET['m'];
10 $_GET['cat'] = (int) $_GET['cat'];
11 $post_stati  = array(   //      array( adj, noun )
12                         'publish' => array(__('Published'), __('Published posts')),
13                         'future' => array(__('Scheduled'), __('Scheduled posts')),
14                         'pending' => array(__('Pending Review'), __('Pending posts')),
15                         'draft' => array(__('Draft'), _c('Drafts|manage posts header')),
16                         'private' => array(__('Private'), __('Private posts'))
17                 );
18
19 $avail_post_stati = $wpdb->get_col("SELECT DISTINCT post_status FROM $wpdb->posts WHERE post_type = 'post'");
20
21 $post_status_q = '';
22 $post_status_label = __('Posts');
23 if ( isset($_GET['post_status']) && in_array( $_GET['post_status'], array_keys($post_stati) ) ) {
24         $post_status_label = $post_stati[$_GET['post_status']][1];
25         $post_status_q = '&post_status=' . $_GET['post_status'];
26 }
27 ?>
28
29 <div class="wrap">
30
31 <?php
32
33 if ( 'pending' === $_GET['post_status'] ) {
34         $order = 'ASC';
35         $orderby = 'modified';
36 } elseif ( 'draft' === $_GET['post_status'] ) {
37         $order = 'DESC';
38         $orderby = 'modified';
39 } else {
40         $order = 'DESC';
41         $orderby = 'date';
42 }
43
44 wp("what_to_show=posts$post_status_q&posts_per_page=15&order=$order&orderby=$orderby");
45
46 // define the columns to display, the syntax is 'internal name' => 'display name'
47 $posts_columns = array();
48 $posts_columns['id'] = '<div style="text-align: center">' . __('ID') . '</div>';
49 if ( 'draft' === $_GET['post_status'] )
50         $posts_columns['modified'] = __('Modified');
51 elseif ( 'pending' === $_GET['post_status'] )
52         $posts_columns['modified'] = __('Submitted');
53 else
54         $posts_columns['date'] = __('When');
55 $posts_columns['title'] = __('Title');
56 $posts_columns['categories'] = __('Categories');
57 if ( !in_array($_GET['post_status'], array('pending', 'draft', 'future')) )
58         $posts_columns['comments'] = '<div style="text-align: center">' . __('Comments') . '</div>';
59 $posts_columns['author'] = __('Author');
60
61 $posts_columns = apply_filters('manage_posts_columns', $posts_columns);
62
63 // you can not edit these at the moment
64 $posts_columns['control_view']   = '';
65 $posts_columns['control_edit']   = '';
66 $posts_columns['control_delete'] = '';
67
68 ?>
69
70 <h2><?php
71 if ( is_single() ) {
72         printf(__('Comments on %s'), apply_filters( "the_title", $post->post_title));
73 } else {
74         if ( $post_listing_pageable && !is_archive() && !is_search() )
75                 $h2_noun = is_paged() ? sprintf(__( 'Previous %s' ), $post_status_label) : sprintf(__('Latest %s'), $post_status_label);
76         else
77                 $h2_noun = $post_status_label;
78         // Use $_GET instead of is_ since they can override each other
79         $h2_author = '';
80         $_GET['author'] = (int) $_GET['author'];
81         if ( $_GET['author'] != 0 ) {
82                 if ( $_GET['author'] == '-' . $user_ID ) { // author exclusion
83                         $h2_author = ' ' . __('by other authors');
84                 } else {
85                         $author_user = get_userdata( get_query_var( 'author' ) );
86                         $h2_author = ' ' . sprintf(__('by %s'), wp_specialchars( $author_user->display_name ));
87                 }
88         }
89         $h2_search = isset($_GET['s'])   && $_GET['s']   ? ' ' . sprintf(__('matching &#8220;%s&#8221;'), wp_specialchars( get_search_query() ) ) : '';
90         $h2_cat    = isset($_GET['cat']) && $_GET['cat'] ? ' ' . sprintf( __('in &#8220;%s&#8221;'), single_cat_title('', false) ) : '';
91         $h2_month  = isset($_GET['m'])   && $_GET['m']   ? ' ' . sprintf( __('during %s'), single_month_title(' ', false) ) : '';
92         printf( _c( '%1$s%2$s%3$s%4$s%5$s|You can reorder these: 1: Posts, 2: by {s}, 3: matching {s}, 4: in {s}, 5: during {s}' ), $h2_noun, $h2_author, $h2_search, $h2_cat, $h2_month );
93 }
94 ?></h2>
95
96 <form name="searchform" id="searchform" action="" method="get">
97         <fieldset><legend><?php _e('Search terms&hellip;'); ?></legend>
98                 <input type="text" name="s" id="s" value="<?php the_search_query(); ?>" size="17" />
99         </fieldset>
100
101         <fieldset><legend><?php _e('Status&hellip;'); ?></legend>
102                 <select name='post_status'>
103                         <option<?php selected( @$_GET['post_status'], 0 ); ?> value='0'><?php _e('Any'); ?></option>
104 <?php   foreach ( $post_stati as $status => $label ) : if ( !in_array($status, $avail_post_stati) ) continue; ?>
105                         <option<?php selected( @$_GET['post_status'], $status ); ?> value='<?php echo $status; ?>'><?php echo $label[0]; ?></option>
106 <?php   endforeach; ?>
107                 </select>
108         </fieldset>
109
110 <?php
111 $editable_ids = get_editable_user_ids( $user_ID );
112 if ( $editable_ids && count( $editable_ids ) > 1 ) :
113 ?>
114         <fieldset><legend><?php _e('Author&hellip;'); ?></legend>
115                 <?php wp_dropdown_users( array('include' => $editable_ids, 'show_option_all' => __('Any'), 'name' => 'author', 'selected' => isset($_GET['author']) ? $_GET['author'] : 0) ); ?>
116         </fieldset>
117
118 <?php
119 endif;
120
121 $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";
122
123 $arc_result = $wpdb->get_results( $arc_query );
124
125 $month_count = count($arc_result);
126
127 if ( $month_count && !( 1 == $month_count && 0 == $arc_result[0]->mmonth ) ) { ?>
128
129         <fieldset><legend><?php _e('Month&hellip;') ?></legend>
130                 <select name='m'>
131                         <option<?php selected( @$_GET['m'], 0 ); ?> value='0'><?php _e('Any'); ?></option>
132                 <?php
133                 foreach ($arc_result as $arc_row) {
134                         if ( $arc_row->yyear == 0 )
135                                 continue;
136                         $arc_row->mmonth = zeroise($arc_row->mmonth, 2);
137
138                         if ( $arc_row->yyear . $arc_row->mmonth == $_GET['m'] )
139                                 $default = ' selected="selected"';
140                         else
141                                 $default = '';
142
143                         echo "<option$default value='$arc_row->yyear$arc_row->mmonth'>";
144                         echo $wp_locale->get_month($arc_row->mmonth) . " $arc_row->yyear";
145                         echo "</option>\n";
146                 }
147                 ?>
148                 </select>
149         </fieldset>
150
151 <?php } ?>
152
153         <fieldset><legend><?php _e('Category&hellip;') ?></legend>
154                 <?php wp_dropdown_categories('show_option_all='.__('All').'&hide_empty=1&hierarchical=1&show_count=1&selected='.$cat);?>
155         </fieldset>
156         <input type="submit" id="post-query-submit" value="<?php _e('Filter &#187;'); ?>" class="button" />
157 </form>
158
159 <?php do_action('restrict_manage_posts'); ?>
160
161 <br style="clear:both;" />
162
163 <?php include( 'edit-post-rows.php' ); ?>
164
165 <div id="ajax-response"></div>
166
167 <div class="navigation">
168 <div class="alignleft"><?php next_posts_link(__('&laquo; Previous Entries')) ?></div>
169 <div class="alignright"><?php previous_posts_link(__('Next Entries &raquo;')) ?></div>
170 </div>
171
172 <?php
173
174 if ( 1 == count($posts) ) {
175
176         $comments = $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE comment_post_ID = $id AND comment_approved != 'spam' ORDER BY comment_date");
177         if ($comments) {
178                 update_comment_cache($comments);
179         ?>
180 <h3 id="comments"><?php _e('Comments') ?></h3>
181 <ol id="the-comment-list" class="commentlist">
182 <?php
183 $i = 0;
184 foreach ($comments as $comment) {
185
186                 ++$i; $class = '';
187                 $post = get_post($comment->comment_post_ID);
188                 $authordata = get_userdata($post->post_author);
189                         $comment_status = wp_get_comment_status($comment->comment_ID);
190                         if ('unapproved' == $comment_status)
191                                 $class .= ' unapproved';
192                         if ($i % 2)
193                                 $class .= ' alternate';
194                         echo "<li id='comment-$comment->comment_ID' class='$class'>";
195 ?>
196 <p><strong><?php comment_author() ?></strong> <?php if ($comment->comment_author_email) { ?>| <?php comment_author_email_link() ?> <?php } if ($comment->comment_author_url && 'http://' != $comment->comment_author_url) { ?> | <?php comment_author_url_link() ?> <?php } ?>| <?php _e('IP:') ?> <a href="edit-comments.php?s=<?php comment_author_IP() ?>&amp;mode=edit"><?php comment_author_IP() ?></a></p>
197
198 <?php comment_text() ?>
199
200 <p><?php comment_date(__('M j, g:i A')); ?> &#8212; [
201 <?php
202 if ( current_user_can('edit_post', $comment->comment_post_ID) ) {
203         echo " <a href='comment.php?action=editcomment&amp;c=".$comment->comment_ID."'>" . __('Edit') . '</a>';
204         echo ' | <a href="' . wp_nonce_url('comment.php?action=deletecomment&amp;p=' . $comment->comment_post_ID . '&amp;c=' . $comment->comment_ID, 'delete-comment_' . $comment->comment_ID) . '" onclick="return deleteSomething( \'comment\', ' . $comment->comment_ID . ', \'' . js_escape(sprintf(__("You are about to delete this comment by '%s'.\n'Cancel' to stop, 'OK' to delete."), $comment->comment_author)) . "', theCommentList );\">" . __('Delete') . '</a> ';
205         if ( ('none' != $comment_status) && ( current_user_can('moderate_comments') ) ) {
206                 echo '<span class="unapprove"> | <a href="' . wp_nonce_url('comment.php?action=unapprovecomment&amp;p=' . $comment->comment_post_ID . '&amp;c=' . $comment->comment_ID, 'unapprove-comment_' . $comment->comment_ID) . '" onclick="return dimSomething( \'comment\', ' . $comment->comment_ID . ', \'unapproved\', theCommentList );">' . __('Unapprove') . '</a> </span>';
207                 echo '<span class="approve"> | <a href="' . wp_nonce_url('comment.php?action=approvecomment&amp;p=' . $comment->comment_post_ID . '&amp;c=' . $comment->comment_ID, 'approve-comment_' . $comment->comment_ID) . '" onclick="return dimSomething( \'comment\', ' . $comment->comment_ID . ', \'unapproved\', theCommentList );">' . __('Approve') . '</a> </span>';
208         }
209         echo " | <a href=\"" . wp_nonce_url("comment.php?action=deletecomment&amp;dt=spam&amp;p=" . $comment->comment_post_ID . "&amp;c=" . $comment->comment_ID, 'delete-comment_' . $comment->comment_ID) . "\" onclick=\"return deleteSomething( 'comment-as-spam', $comment->comment_ID, '" . js_escape(sprintf(__("You are about to mark as spam this comment by '%s'.\n'Cancel' to stop, 'OK' to mark as spam."), $comment->comment_author)) . "', theCommentList );\">" . __('Spam') . "</a> ";
210 }
211 ?> ]
212 </p>
213                 </li>
214
215 <?php //end of the loop, don't delete
216                 } // end foreach
217         echo '</ol>';
218         }//end if comments
219         ?>
220 <?php } ?>
221 </div>
222
223 <?php include('admin-footer.php'); ?>