PageRenderTime 43ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-admin/edit.php

https://bitbucket.org/abnopanda/wordpress
PHP | 293 lines | 237 code | 48 blank | 8 comment | 50 complexity | 8d7611df3da7fe2ed6924c55f7e13f48 MD5 | raw file
  1. <?php
  2. /**
  3. * Edit Posts Administration Screen.
  4. *
  5. * @package WordPress
  6. * @subpackage Administration
  7. */
  8. /** WordPress Administration Bootstrap */
  9. require_once( './admin.php' );
  10. if ( ! $typenow )
  11. wp_die( __( 'Invalid post type' ) );
  12. $post_type = $typenow;
  13. $post_type_object = get_post_type_object( $post_type );
  14. if ( ! $post_type_object )
  15. wp_die( __( 'Invalid post type' ) );
  16. if ( ! current_user_can( $post_type_object->cap->edit_posts ) )
  17. wp_die( __( 'Cheatin&#8217; uh?' ) );
  18. $wp_list_table = _get_list_table('WP_Posts_List_Table');
  19. $pagenum = $wp_list_table->get_pagenum();
  20. // Back-compat for viewing comments of an entry
  21. foreach ( array( 'p', 'attachment_id', 'page_id' ) as $_redirect ) {
  22. if ( ! empty( $_REQUEST[ $_redirect ] ) ) {
  23. wp_redirect( admin_url( 'edit-comments.php?p=' . absint( $_REQUEST[ $_redirect ] ) ) );
  24. exit;
  25. }
  26. }
  27. unset( $_redirect );
  28. if ( 'post' != $post_type ) {
  29. $parent_file = "edit.php?post_type=$post_type";
  30. $submenu_file = "edit.php?post_type=$post_type";
  31. $post_new_file = "post-new.php?post_type=$post_type";
  32. } else {
  33. $parent_file = 'edit.php';
  34. $submenu_file = 'edit.php';
  35. $post_new_file = 'post-new.php';
  36. }
  37. $doaction = $wp_list_table->current_action();
  38. if ( $doaction ) {
  39. check_admin_referer('bulk-posts');
  40. $sendback = remove_query_arg( array('trashed', 'untrashed', 'deleted', 'ids'), wp_get_referer() );
  41. if ( ! $sendback )
  42. $sendback = admin_url( $parent_file );
  43. $sendback = add_query_arg( 'paged', $pagenum, $sendback );
  44. if ( strpos($sendback, 'post.php') !== false )
  45. $sendback = admin_url($post_new_file);
  46. if ( 'delete_all' == $doaction ) {
  47. $post_status = preg_replace('/[^a-z0-9_-]+/i', '', $_REQUEST['post_status']);
  48. if ( get_post_status_object($post_status) ) // Check the post status exists first
  49. $post_ids = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type=%s AND post_status = %s", $post_type, $post_status ) );
  50. $doaction = 'delete';
  51. } elseif ( isset( $_REQUEST['media'] ) ) {
  52. $post_ids = $_REQUEST['media'];
  53. } elseif ( isset( $_REQUEST['ids'] ) ) {
  54. $post_ids = explode( ',', $_REQUEST['ids'] );
  55. } elseif ( !empty( $_REQUEST['post'] ) ) {
  56. $post_ids = array_map('intval', $_REQUEST['post']);
  57. }
  58. if ( !isset( $post_ids ) ) {
  59. wp_redirect( $sendback );
  60. exit;
  61. }
  62. switch ( $doaction ) {
  63. case 'trash':
  64. $trashed = 0;
  65. foreach( (array) $post_ids as $post_id ) {
  66. if ( !current_user_can($post_type_object->cap->delete_post, $post_id) )
  67. wp_die( __('You are not allowed to move this item to the Trash.') );
  68. if ( !wp_trash_post($post_id) )
  69. wp_die( __('Error in moving to Trash.') );
  70. $trashed++;
  71. }
  72. $sendback = add_query_arg( array('trashed' => $trashed, 'ids' => join(',', $post_ids) ), $sendback );
  73. break;
  74. case 'untrash':
  75. $untrashed = 0;
  76. foreach( (array) $post_ids as $post_id ) {
  77. if ( !current_user_can($post_type_object->cap->delete_post, $post_id) )
  78. wp_die( __('You are not allowed to restore this item from the Trash.') );
  79. if ( !wp_untrash_post($post_id) )
  80. wp_die( __('Error in restoring from Trash.') );
  81. $untrashed++;
  82. }
  83. $sendback = add_query_arg('untrashed', $untrashed, $sendback);
  84. break;
  85. case 'delete':
  86. $deleted = 0;
  87. foreach( (array) $post_ids as $post_id ) {
  88. $post_del = get_post($post_id);
  89. if ( !current_user_can($post_type_object->cap->delete_post, $post_id) )
  90. wp_die( __('You are not allowed to delete this item.') );
  91. if ( $post_del->post_type == 'attachment' ) {
  92. if ( ! wp_delete_attachment($post_id) )
  93. wp_die( __('Error in deleting...') );
  94. } else {
  95. if ( !wp_delete_post($post_id) )
  96. wp_die( __('Error in deleting...') );
  97. }
  98. $deleted++;
  99. }
  100. $sendback = add_query_arg('deleted', $deleted, $sendback);
  101. break;
  102. case 'edit':
  103. if ( isset($_REQUEST['bulk_edit']) ) {
  104. $done = bulk_edit_posts($_REQUEST);
  105. if ( is_array($done) ) {
  106. $done['updated'] = count( $done['updated'] );
  107. $done['skipped'] = count( $done['skipped'] );
  108. $done['locked'] = count( $done['locked'] );
  109. $sendback = add_query_arg( $done, $sendback );
  110. }
  111. }
  112. break;
  113. }
  114. $sendback = remove_query_arg( array('action', 'action2', 'tags_input', 'post_author', 'comment_status', 'ping_status', '_status', 'post', 'bulk_edit', 'post_view'), $sendback );
  115. wp_redirect($sendback);
  116. exit();
  117. } elseif ( ! empty($_REQUEST['_wp_http_referer']) ) {
  118. wp_redirect( remove_query_arg( array('_wp_http_referer', '_wpnonce'), stripslashes($_SERVER['REQUEST_URI']) ) );
  119. exit;
  120. }
  121. $wp_list_table->prepare_items();
  122. wp_enqueue_script('inline-edit-post');
  123. $title = $post_type_object->labels->name;
  124. if ( 'post' == $post_type ) {
  125. get_current_screen()->add_help_tab( array(
  126. 'id' => 'overview',
  127. 'title' => __('Overview'),
  128. 'content' =>
  129. '<p>' . __('This screen provides access to all of your posts. You can customize the display of this screen to suit your workflow.') . '</p>'
  130. ) );
  131. get_current_screen()->add_help_tab( array(
  132. 'id' => 'screen-content',
  133. 'title' => __('Screen Content'),
  134. 'content' =>
  135. '<p>' . __('You can customize the display of this screen&#8217;s contents in a number of ways:') . '</p>' .
  136. '<ul>' .
  137. '<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>' .
  138. '<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>' .
  139. '<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>' .
  140. '<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>' .
  141. '</ul>'
  142. ) );
  143. get_current_screen()->add_help_tab( array(
  144. 'id' => 'action-links',
  145. 'title' => __('Available Actions'),
  146. 'content' =>
  147. '<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>' .
  148. '<ul>' .
  149. '<li>' . __('<strong>Edit</strong> takes you to the editing screen for that post. You can also reach that screen by clicking on the post title.') . '</li>' .
  150. '<li>' . __('<strong>Quick Edit</strong> provides inline access to the metadata of your post, allowing you to update post details without leaving this screen.') . '</li>' .
  151. '<li>' . __('<strong>Trash</strong> removes your post from this list and places it in the trash, from which you can permanently delete it.') . '</li>' .
  152. '<li>' . __('<strong>Preview</strong> 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>' .
  153. '</ul>'
  154. ) );
  155. get_current_screen()->add_help_tab( array(
  156. 'id' => 'bulk-actions',
  157. 'title' => __('Bulk Actions'),
  158. 'content' =>
  159. '<p>' . __('You can also edit or move multiple posts to the trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk Actions menu and click Apply.') . '</p>' .
  160. '<p>' . __('When using Bulk Edit, you can 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>'
  161. ) );
  162. get_current_screen()->set_help_sidebar(
  163. '<p><strong>' . __('For more information:') . '</strong></p>' .
  164. '<p>' . __('<a href="http://codex.wordpress.org/Posts_Screen" target="_blank">Documentation on Managing Posts</a>') . '</p>' .
  165. '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
  166. );
  167. } elseif ( 'page' == $post_type ) {
  168. get_current_screen()->add_help_tab( array(
  169. 'id' => 'overview',
  170. 'title' => __('Overview'),
  171. 'content' =>
  172. '<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>'
  173. ) );
  174. get_current_screen()->add_help_tab( array(
  175. 'id' => 'managing-pages',
  176. 'title' => __('Managing Pages'),
  177. 'content' =>
  178. '<p>' . __('Managing pages is very similar to managing posts, and the screens can be customized in the same way.') . '</p>' .
  179. '<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>'
  180. ) );
  181. get_current_screen()->set_help_sidebar(
  182. '<p><strong>' . __('For more information:') . '</strong></p>' .
  183. '<p>' . __('<a href="http://codex.wordpress.org/Pages_Screen" target="_blank">Documentation on Managing Pages</a>') . '</p>' .
  184. '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
  185. );
  186. }
  187. add_screen_option( 'per_page', array( 'label' => $title, 'default' => 20, 'option' => 'edit_' . $post_type . '_per_page' ) );
  188. require_once('./admin-header.php');
  189. ?>
  190. <div class="wrap">
  191. <?php screen_icon(); ?>
  192. <h2><?php
  193. echo esc_html( $post_type_object->labels->name );
  194. if ( current_user_can( $post_type_object->cap->create_posts ) )
  195. echo ' <a href="' . esc_url( $post_new_file ) . '" class="add-new-h2">' . esc_html( $post_type_object->labels->add_new ) . '</a>';
  196. if ( ! empty( $_REQUEST['s'] ) )
  197. printf( ' <span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', get_search_query() );
  198. ?></h2>
  199. <?php if ( isset( $_REQUEST['locked'] ) || isset( $_REQUEST['updated'] ) || isset( $_REQUEST['deleted'] ) || isset( $_REQUEST['trashed'] ) || isset( $_REQUEST['untrashed'] ) ) {
  200. $messages = array();
  201. ?>
  202. <div id="message" class="updated"><p>
  203. <?php if ( isset( $_REQUEST['updated'] ) && $updated = absint( $_REQUEST['updated'] ) ) {
  204. $messages[] = sprintf( _n( '%s post updated.', '%s posts updated.', $updated ), number_format_i18n( $updated ) );
  205. }
  206. if ( isset( $_REQUEST['locked'] ) && $locked = absint( $_REQUEST['locked'] ) ) {
  207. $messages[] = sprintf( _n( '%s item not updated, somebody is editing it.', '%s items not updated, somebody is editing them.', $locked ), number_format_i18n( $locked ) );
  208. }
  209. if ( isset( $_REQUEST['deleted'] ) && $deleted = absint( $_REQUEST['deleted'] ) ) {
  210. $messages[] = sprintf( _n( 'Item permanently deleted.', '%s items permanently deleted.', $deleted ), number_format_i18n( $deleted ) );
  211. }
  212. if ( isset( $_REQUEST['trashed'] ) && $trashed = absint( $_REQUEST['trashed'] ) ) {
  213. $messages[] = sprintf( _n( 'Item moved to the Trash.', '%s items moved to the Trash.', $trashed ), number_format_i18n( $trashed ) );
  214. $ids = isset($_REQUEST['ids']) ? $_REQUEST['ids'] : 0;
  215. $messages[] = '<a href="' . esc_url( wp_nonce_url( "edit.php?post_type=$post_type&doaction=undo&action=untrash&ids=$ids", "bulk-posts" ) ) . '">' . __('Undo') . '</a>';
  216. }
  217. if ( isset( $_REQUEST['untrashed'] ) && $untrashed = absint( $_REQUEST['untrashed'] ) ) {
  218. $messages[] = sprintf( _n( 'Item restored from the Trash.', '%s items restored from the Trash.', $untrashed ), number_format_i18n( $untrashed ) );
  219. }
  220. if ( $messages )
  221. echo join( ' ', $messages );
  222. unset( $messages );
  223. $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'locked', 'skipped', 'updated', 'deleted', 'trashed', 'untrashed' ), $_SERVER['REQUEST_URI'] );
  224. ?>
  225. </p></div>
  226. <?php } ?>
  227. <?php $wp_list_table->views(); ?>
  228. <form id="posts-filter" action="" method="get">
  229. <?php $wp_list_table->search_box( $post_type_object->labels->search_items, 'post' ); ?>
  230. <input type="hidden" name="post_status" class="post_status_page" value="<?php echo !empty($_REQUEST['post_status']) ? esc_attr($_REQUEST['post_status']) : 'all'; ?>" />
  231. <input type="hidden" name="post_type" class="post_type_page" value="<?php echo $post_type; ?>" />
  232. <?php if ( ! empty( $_REQUEST['show_sticky'] ) ) { ?>
  233. <input type="hidden" name="show_sticky" value="1" />
  234. <?php } ?>
  235. <?php $wp_list_table->display(); ?>
  236. </form>
  237. <?php
  238. if ( $wp_list_table->has_items() )
  239. $wp_list_table->inline_edit();
  240. ?>
  241. <div id="ajax-response"></div>
  242. <br class="clear" />
  243. </div>
  244. <?php
  245. include('./admin-footer.php');