PageRenderTime 35ms CodeModel.GetById 10ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-admin/edit.php

https://github.com/thisduck/wordpress
PHP | 294 lines | 231 code | 53 blank | 10 comment | 74 complexity | b66e4deeb8711110af2b47bb6411ef1b MD5 | raw file
  1. <?php
  2. /**
  3. * Edit Posts Administration Panel.
  4. *
  5. * @package WordPress
  6. * @subpackage Administration
  7. */
  8. /** WordPress Administration Bootstrap */
  9. require_once( './admin.php' );
  10. require_once( './includes/default-list-tables.php' );
  11. $wp_list_table = new WP_Posts_Table;
  12. $wp_list_table->check_permissions();
  13. // Back-compat for viewing comments of an entry
  14. if ( $_redirect = intval( max( @$_REQUEST['p'], @$_REQUEST['attachment_id'], @$_REQUEST['page_id'] ) ) ) {
  15. wp_redirect( admin_url('edit-comments.php?p=' . $_redirect ) );
  16. exit;
  17. } else {
  18. unset( $_redirect );
  19. }
  20. // Handle bulk actions
  21. if ( isset($_REQUEST['doaction']) || isset($_REQUEST['doaction2']) || isset($_REQUEST['delete_all']) || isset($_REQUEST['delete_all2']) || isset($_REQUEST['bulk_edit']) ) {
  22. check_admin_referer('bulk-posts');
  23. $sendback = remove_query_arg( array('trashed', 'untrashed', 'deleted', 'ids'), wp_get_referer() );
  24. if ( strpos($sendback, 'post.php') !== false )
  25. $sendback = admin_url($post_new_file);
  26. if ( isset($_REQUEST['delete_all']) || isset($_REQUEST['delete_all2']) ) {
  27. $post_status = preg_replace('/[^a-z0-9_-]+/i', '', $_REQUEST['post_status']);
  28. $post_ids = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type=%s AND post_status = %s", $post_type, $post_status ) );
  29. $doaction = 'delete';
  30. } elseif ( ( $_REQUEST['action'] != -1 || $_REQUEST['action2'] != -1 ) && ( isset($_REQUEST['post']) || isset($_REQUEST['ids']) ) ) {
  31. $post_ids = isset($_REQUEST['post']) ? array_map( 'intval', (array) $_REQUEST['post'] ) : explode(',', $_REQUEST['ids']);
  32. $doaction = ($_REQUEST['action'] != -1) ? $_REQUEST['action'] : $_REQUEST['action2'];
  33. } else {
  34. wp_redirect( admin_url("edit.php?post_type=$post_type") );
  35. }
  36. switch ( $doaction ) {
  37. case 'trash':
  38. $trashed = 0;
  39. foreach( (array) $post_ids as $post_id ) {
  40. if ( !current_user_can($post_type_object->cap->delete_post, $post_id) )
  41. wp_die( __('You are not allowed to move this item to the Trash.') );
  42. if ( !wp_trash_post($post_id) )
  43. wp_die( __('Error in moving to Trash.') );
  44. $trashed++;
  45. }
  46. $sendback = add_query_arg( array('trashed' => $trashed, 'ids' => join(',', $post_ids)), $sendback );
  47. break;
  48. case 'untrash':
  49. $untrashed = 0;
  50. foreach( (array) $post_ids as $post_id ) {
  51. if ( !current_user_can($post_type_object->cap->delete_post, $post_id) )
  52. wp_die( __('You are not allowed to restore this item from the Trash.') );
  53. if ( !wp_untrash_post($post_id) )
  54. wp_die( __('Error in restoring from Trash.') );
  55. $untrashed++;
  56. }
  57. $sendback = add_query_arg('untrashed', $untrashed, $sendback);
  58. break;
  59. case 'delete':
  60. $deleted = 0;
  61. foreach( (array) $post_ids as $post_id ) {
  62. $post_del = & get_post($post_id);
  63. if ( !current_user_can($post_type_object->cap->delete_post, $post_id) )
  64. wp_die( __('You are not allowed to delete this item.') );
  65. if ( $post_del->post_type == 'attachment' ) {
  66. if ( ! wp_delete_attachment($post_id) )
  67. wp_die( __('Error in deleting...') );
  68. } else {
  69. if ( !wp_delete_post($post_id) )
  70. wp_die( __('Error in deleting...') );
  71. }
  72. $deleted++;
  73. }
  74. $sendback = add_query_arg('deleted', $deleted, $sendback);
  75. break;
  76. case 'edit':
  77. $done = bulk_edit_posts($_REQUEST);
  78. if ( is_array($done) ) {
  79. $done['updated'] = count( $done['updated'] );
  80. $done['skipped'] = count( $done['skipped'] );
  81. $done['locked'] = count( $done['locked'] );
  82. $sendback = add_query_arg( $done, $sendback );
  83. }
  84. break;
  85. }
  86. if ( isset($_REQUEST['action']) )
  87. $sendback = remove_query_arg( array('action', 'action2', 'tags_input', 'post_author', 'comment_status', 'ping_status', '_status', 'post', 'bulk_edit', 'post_view'), $sendback );
  88. wp_redirect($sendback);
  89. exit();
  90. } elseif ( ! empty($_REQUEST['_wp_http_referer']) ) {
  91. wp_redirect( remove_query_arg( array('_wp_http_referer', '_wpnonce'), stripslashes($_SERVER['REQUEST_URI']) ) );
  92. exit;
  93. }
  94. if ( 'post' != $post_type ) {
  95. $parent_file = "edit.php?post_type=$post_type";
  96. $submenu_file = "edit.php?post_type=$post_type";
  97. $post_new_file = "post-new.php?post_type=$post_type";
  98. } else {
  99. $parent_file = 'edit.php';
  100. $submenu_file = 'edit.php';
  101. $post_new_file = 'post-new.php';
  102. }
  103. $wp_list_table->prepare_items();
  104. wp_enqueue_script('inline-edit-post');
  105. $title = $post_type_object->labels->name;
  106. if ( 'post' == $post_type ) {
  107. add_contextual_help($current_screen,
  108. '<p>' . __('You can customize the display of this screen in a number of ways:') . '</p>' .
  109. '<ul>' .
  110. '<li>' . __('You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab.') . '</li>' .
  111. '<li>' . __('You can filter the list of posts by post status using the text links in the upper left to show All, Published, Draft, or Trashed posts. The default view is to show all posts.') . '</li>' .
  112. '<li>' . __('You can view posts in a simple title list or with an excerpt. Choose the view you prefer by clicking on the icons at the top of the list on the right.') . '</li>' .
  113. '<li>' . __('You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list.') . '</li>' .
  114. '</ul>' .
  115. '<p>' . __('Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:') . '</p>' .
  116. '<ul>' .
  117. '<li>' . __('Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title.') . '</li>' .
  118. '<li>' . __('Quick Edit provides inline access to the metadata of your post, allowing you to update post details without leaving this screen.') . '</li>' .
  119. '<li>' . __('Trash removes your post from this list and places it in the trash, from which you can permanently delete it.') . '</li>' .
  120. '<li>' . __('Preview will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post&#8217;s status.') . '</li>' .
  121. '</ul>' .
  122. '<p>' . __('You can also edit multiple posts at once. Select the posts you want to edit using the checkboxes, select Edit from the Bulk Actions menu and click Apply. You will be able to change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the x next to its name in the Bulk Edit area that appears.') . '</p>' .
  123. '<p><strong>' . __('For more information:') . '</strong></p>' .
  124. '<p>' . __('<a href="http://codex.wordpress.org/Posts_Edit_SubPanel" target="_blank">Edit Posts Documentation</a>') . '</p>' .
  125. '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
  126. );
  127. } elseif ( 'page' == $post_type ) {
  128. add_contextual_help($current_screen,
  129. '<p>' . __('Pages are similar to Posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest Pages under other Pages by making one the &#8220;Parent&#8221; of the other, creating a group of Pages.') . '</p>' .
  130. '<p>' . __('Managing Pages is very similar to managing Posts, and the screens can be customized in the same way.') . '</p>' .
  131. '<p>' . __('You can also perform the same types of actions, including narrowing the list by using the filters, acting on a Page using the action links that appear when you hover over a row, or using the Bulk Actions menu to edit the metadata for multiple Pages at once.') . '</p>' .
  132. '<p><strong>' . __('For more information:') . '</strong></p>' .
  133. '<p>' . __('<a href="http://codex.wordpress.org/Pages_Edit_SubPanel" target="_blank">Page Management Documentation</a>') . '</p>' .
  134. '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
  135. );
  136. }
  137. require_once('./admin-header.php');
  138. ?>
  139. <div class="wrap">
  140. <?php screen_icon(); ?>
  141. <h2><?php echo esc_html( $post_type_object->labels->name ); ?> <a href="<?php echo $post_new_file ?>" class="button add-new-h2"><?php echo esc_html($post_type_object->labels->add_new); ?></a> <?php
  142. if ( isset($_REQUEST['s']) && $_REQUEST['s'] )
  143. printf( '<span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', get_search_query() ); ?>
  144. </h2>
  145. <?php
  146. if ( isset($_REQUEST['posted']) && $_REQUEST['posted'] ) : $_REQUEST['posted'] = (int) $_REQUEST['posted']; ?>
  147. <div id="message" class="updated"><p><strong><?php _e('This has been saved.'); ?></strong> <a href="<?php echo get_permalink( $_REQUEST['posted'] ); ?>"><?php _e('View Post'); ?></a> | <a href="<?php echo get_edit_post_link( $_REQUEST['posted'] ); ?>"><?php _e('Edit Post'); ?></a></p></div>
  148. <?php $_SERVER['REQUEST_URI'] = remove_query_arg(array('posted'), $_SERVER['REQUEST_URI']);
  149. endif; ?>
  150. <?php if ( isset($_REQUEST['locked']) || isset($_REQUEST['skipped']) || isset($_REQUEST['updated']) || isset($_REQUEST['deleted']) || isset($_REQUEST['trashed']) || isset($_REQUEST['untrashed']) ) { ?>
  151. <div id="message" class="updated"><p>
  152. <?php if ( isset($_REQUEST['updated']) && (int) $_REQUEST['updated'] ) {
  153. printf( _n( '%s post updated.', '%s posts updated.', $_REQUEST['updated'] ), number_format_i18n( $_REQUEST['updated'] ) );
  154. unset($_REQUEST['updated']);
  155. }
  156. if ( isset($_REQUEST['skipped']) && (int) $_REQUEST['skipped'] )
  157. unset($_REQUEST['skipped']);
  158. if ( isset($_REQUEST['locked']) && (int) $_REQUEST['locked'] ) {
  159. printf( _n( '%s item not updated, somebody is editing it.', '%s items not updated, somebody is editing them.', $_REQUEST['locked'] ), number_format_i18n( $_REQUEST['locked'] ) );
  160. unset($_REQUEST['locked']);
  161. }
  162. if ( isset($_REQUEST['deleted']) && (int) $_REQUEST['deleted'] ) {
  163. printf( _n( 'Item permanently deleted.', '%s items permanently deleted.', $_REQUEST['deleted'] ), number_format_i18n( $_REQUEST['deleted'] ) );
  164. unset($_REQUEST['deleted']);
  165. }
  166. if ( isset($_REQUEST['trashed']) && (int) $_REQUEST['trashed'] ) {
  167. printf( _n( 'Item moved to the Trash.', '%s items moved to the Trash.', $_REQUEST['trashed'] ), number_format_i18n( $_REQUEST['trashed'] ) );
  168. $ids = isset($_REQUEST['ids']) ? $_REQUEST['ids'] : 0;
  169. echo ' <a href="' . esc_url( wp_nonce_url( "edit.php?post_type=$post_type&doaction=undo&action=untrash&ids=$ids", "bulk-posts" ) ) . '">' . __('Undo') . '</a><br />';
  170. unset($_REQUEST['trashed']);
  171. }
  172. if ( isset($_REQUEST['untrashed']) && (int) $_REQUEST['untrashed'] ) {
  173. printf( _n( 'Item restored from the Trash.', '%s items restored from the Trash.', $_REQUEST['untrashed'] ), number_format_i18n( $_REQUEST['untrashed'] ) );
  174. unset($_REQUEST['undeleted']);
  175. }
  176. $_SERVER['REQUEST_URI'] = remove_query_arg( array('locked', 'skipped', 'updated', 'deleted', 'trashed', 'untrashed'), $_SERVER['REQUEST_URI'] );
  177. ?>
  178. </p></div>
  179. <?php } ?>
  180. <form id="posts-filter" action="" method="get">
  181. <ul class="subsubsub">
  182. <?php
  183. if ( empty($locked_post_status) ) :
  184. $status_links = array();
  185. $num_posts = wp_count_posts( $post_type, 'readable' );
  186. $class = '';
  187. $allposts = '';
  188. $user_posts = false;
  189. if ( !current_user_can( $post_type_object->cap->edit_others_posts ) ) {
  190. $user_posts = true;
  191. $user_posts_count = $wpdb->get_var( $wpdb->prepare( "
  192. SELECT COUNT( 1 ) FROM $wpdb->posts
  193. WHERE post_type = '%s' AND post_status NOT IN ( 'trash', 'auto-draft' )
  194. AND post_author = %d
  195. ", $post_type, get_current_user_id() ) );
  196. if ( $user_posts_count && empty( $_REQUEST['post_status'] ) && empty( $_REQUEST['all_posts'] ) && empty( $_REQUEST['author'] ) )
  197. $_REQUEST['author'] = get_current_user_id();
  198. }
  199. if ( $user_posts ) {
  200. if ( isset( $_REQUEST['author'] ) && ( $_REQUEST['author'] == $current_user->ID ) )
  201. $class = ' class="current"';
  202. $status_links[] = "<li><a href='edit.php?post_type=$post_type&author=$current_user->ID'$class>" . sprintf( _nx( 'Mine <span class="count">(%s)</span>', 'Mine <span class="count">(%s)</span>', $user_posts_count, 'posts' ), number_format_i18n( $user_posts_count ) ) . '</a>';
  203. $allposts = '&all_posts=1';
  204. }
  205. $total_posts = array_sum( (array) $num_posts );
  206. // Subtract post types that are not included in the admin all list.
  207. foreach ( get_post_stati( array('show_in_admin_all_list' => false) ) as $state )
  208. $total_posts -= $num_posts->$state;
  209. $class = empty($class) && empty($_REQUEST['post_status']) ? ' class="current"' : '';
  210. $status_links[] = "<li><a href='edit.php?post_type=$post_type{$allposts}'$class>" . sprintf( _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $total_posts, 'posts' ), number_format_i18n( $total_posts ) ) . '</a>';
  211. foreach ( get_post_stati(array('show_in_admin_status_list' => true), 'objects') as $status ) {
  212. $class = '';
  213. $status_name = $status->name;
  214. if ( !in_array( $status_name, $avail_post_stati ) )
  215. continue;
  216. if ( empty( $num_posts->$status_name ) )
  217. continue;
  218. if ( isset($_REQUEST['post_status']) && $status_name == $_REQUEST['post_status'] )
  219. $class = ' class="current"';
  220. $status_links[] = "<li><a href='edit.php?post_status=$status_name&amp;post_type=$post_type'$class>" . sprintf( _n( $status->label_count[0], $status->label_count[1], $num_posts->$status_name ), number_format_i18n( $num_posts->$status_name ) ) . '</a>';
  221. }
  222. echo implode( " |</li>\n", $status_links ) . '</li>';
  223. unset( $status_links );
  224. endif;
  225. ?>
  226. </ul>
  227. <p class="search-box">
  228. <label class="screen-reader-text" for="post-search-input"><?php echo $post_type_object->labels->search_items; ?>:</label>
  229. <input type="text" id="post-search-input" name="s" value="<?php the_search_query(); ?>" />
  230. <input type="submit" value="<?php echo esc_attr( $post_type_object->labels->search_items ); ?>" class="button" />
  231. </p>
  232. <input type="hidden" name="post_status" class="post_status_page" value="<?php echo !empty($_REQUEST['post_status']) ? esc_attr($_REQUEST['post_status']) : 'all'; ?>" />
  233. <input type="hidden" name="post_type" class="post_type_page" value="<?php echo $post_type; ?>" />
  234. <?php $wp_list_table->display(); ?>
  235. </form>
  236. <?php $wp_list_table->inline_edit(); ?>
  237. <div id="ajax-response"></div>
  238. <br class="clear" />
  239. </div>
  240. <?php
  241. include('./admin-footer.php');