~canonical-sysadmins/wordpress/4.7.2

« back to all changes in this revision

Viewing changes to wp-admin/edit.php

  • Committer: Jacek Nykis
  • Date: 2015-01-05 16:17:05 UTC
  • Revision ID: jacek.nykis@canonical.com-20150105161705-w544l1h5mcg7u4w9
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * Edit Posts Administration Screen.
 
4
 *
 
5
 * @package WordPress
 
6
 * @subpackage Administration
 
7
 */
 
8
 
 
9
/** WordPress Administration Bootstrap */
 
10
require_once( dirname( __FILE__ ) . '/admin.php' );
 
11
 
 
12
if ( ! $typenow )
 
13
        wp_die( __( 'Invalid post type' ) );
 
14
 
 
15
if ( 'attachment' === $typenow ) {
 
16
        if ( wp_redirect( admin_url( 'upload.php' ) ) ) {
 
17
                exit;
 
18
        }
 
19
}
 
20
 
 
21
$post_type = $typenow;
 
22
$post_type_object = get_post_type_object( $post_type );
 
23
 
 
24
if ( ! $post_type_object )
 
25
        wp_die( __( 'Invalid post type' ) );
 
26
 
 
27
if ( ! current_user_can( $post_type_object->cap->edit_posts ) )
 
28
        wp_die( __( 'Cheatin&#8217; uh?' ) );
 
29
 
 
30
$wp_list_table = _get_list_table('WP_Posts_List_Table');
 
31
$pagenum = $wp_list_table->get_pagenum();
 
32
 
 
33
// Back-compat for viewing comments of an entry
 
34
foreach ( array( 'p', 'attachment_id', 'page_id' ) as $_redirect ) {
 
35
        if ( ! empty( $_REQUEST[ $_redirect ] ) ) {
 
36
                wp_redirect( admin_url( 'edit-comments.php?p=' . absint( $_REQUEST[ $_redirect ] ) ) );
 
37
                exit;
 
38
        }
 
39
}
 
40
unset( $_redirect );
 
41
 
 
42
if ( 'post' != $post_type ) {
 
43
        $parent_file = "edit.php?post_type=$post_type";
 
44
        $submenu_file = "edit.php?post_type=$post_type";
 
45
        $post_new_file = "post-new.php?post_type=$post_type";
 
46
} else {
 
47
        $parent_file = 'edit.php';
 
48
        $submenu_file = 'edit.php';
 
49
        $post_new_file = 'post-new.php';
 
50
}
 
51
 
 
52
$doaction = $wp_list_table->current_action();
 
53
 
 
54
if ( $doaction ) {
 
55
        check_admin_referer('bulk-posts');
 
56
 
 
57
        $sendback = remove_query_arg( array('trashed', 'untrashed', 'deleted', 'locked', 'ids'), wp_get_referer() );
 
58
        if ( ! $sendback )
 
59
                $sendback = admin_url( $parent_file );
 
60
        $sendback = add_query_arg( 'paged', $pagenum, $sendback );
 
61
        if ( strpos($sendback, 'post.php') !== false )
 
62
                $sendback = admin_url($post_new_file);
 
63
 
 
64
        if ( 'delete_all' == $doaction ) {
 
65
                $post_status = preg_replace('/[^a-z0-9_-]+/i', '', $_REQUEST['post_status']);
 
66
                if ( get_post_status_object($post_status) ) // Check the post status exists first
 
67
                        $post_ids = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type=%s AND post_status = %s", $post_type, $post_status ) );
 
68
                $doaction = 'delete';
 
69
        } elseif ( isset( $_REQUEST['media'] ) ) {
 
70
                $post_ids = $_REQUEST['media'];
 
71
        } elseif ( isset( $_REQUEST['ids'] ) ) {
 
72
                $post_ids = explode( ',', $_REQUEST['ids'] );
 
73
        } elseif ( !empty( $_REQUEST['post'] ) ) {
 
74
                $post_ids = array_map('intval', $_REQUEST['post']);
 
75
        }
 
76
 
 
77
        if ( !isset( $post_ids ) ) {
 
78
                wp_redirect( $sendback );
 
79
                exit;
 
80
        }
 
81
 
 
82
        switch ( $doaction ) {
 
83
                case 'trash':
 
84
                        $trashed = $locked = 0;
 
85
 
 
86
                        foreach( (array) $post_ids as $post_id ) {
 
87
                                if ( !current_user_can( 'delete_post', $post_id) )
 
88
                                        wp_die( __('You are not allowed to move this item to the Trash.') );
 
89
 
 
90
                                if ( wp_check_post_lock( $post_id ) ) {
 
91
                                        $locked++;
 
92
                                        continue;
 
93
                                }
 
94
 
 
95
                                if ( !wp_trash_post($post_id) )
 
96
                                        wp_die( __('Error in moving to Trash.') );
 
97
 
 
98
                                $trashed++;
 
99
                        }
 
100
 
 
101
                        $sendback = add_query_arg( array('trashed' => $trashed, 'ids' => join(',', $post_ids), 'locked' => $locked ), $sendback );
 
102
                        break;
 
103
                case 'untrash':
 
104
                        $untrashed = 0;
 
105
                        foreach( (array) $post_ids as $post_id ) {
 
106
                                if ( !current_user_can( 'delete_post', $post_id) )
 
107
                                        wp_die( __('You are not allowed to restore this item from the Trash.') );
 
108
 
 
109
                                if ( !wp_untrash_post($post_id) )
 
110
                                        wp_die( __('Error in restoring from Trash.') );
 
111
 
 
112
                                $untrashed++;
 
113
                        }
 
114
                        $sendback = add_query_arg('untrashed', $untrashed, $sendback);
 
115
                        break;
 
116
                case 'delete':
 
117
                        $deleted = 0;
 
118
                        foreach( (array) $post_ids as $post_id ) {
 
119
                                $post_del = get_post($post_id);
 
120
 
 
121
                                if ( !current_user_can( 'delete_post', $post_id ) )
 
122
                                        wp_die( __('You are not allowed to delete this item.') );
 
123
 
 
124
                                if ( $post_del->post_type == 'attachment' ) {
 
125
                                        if ( ! wp_delete_attachment($post_id) )
 
126
                                                wp_die( __('Error in deleting.') );
 
127
                                } else {
 
128
                                        if ( !wp_delete_post($post_id) )
 
129
                                                wp_die( __('Error in deleting.') );
 
130
                                }
 
131
                                $deleted++;
 
132
                        }
 
133
                        $sendback = add_query_arg('deleted', $deleted, $sendback);
 
134
                        break;
 
135
                case 'edit':
 
136
                        if ( isset($_REQUEST['bulk_edit']) ) {
 
137
                                $done = bulk_edit_posts($_REQUEST);
 
138
 
 
139
                                if ( is_array($done) ) {
 
140
                                        $done['updated'] = count( $done['updated'] );
 
141
                                        $done['skipped'] = count( $done['skipped'] );
 
142
                                        $done['locked'] = count( $done['locked'] );
 
143
                                        $sendback = add_query_arg( $done, $sendback );
 
144
                                }
 
145
                        }
 
146
                        break;
 
147
        }
 
148
 
 
149
        $sendback = remove_query_arg( array('action', 'action2', 'tags_input', 'post_author', 'comment_status', 'ping_status', '_status', 'post', 'bulk_edit', 'post_view'), $sendback );
 
150
 
 
151
        wp_redirect($sendback);
 
152
        exit();
 
153
} elseif ( ! empty($_REQUEST['_wp_http_referer']) ) {
 
154
         wp_redirect( remove_query_arg( array('_wp_http_referer', '_wpnonce'), wp_unslash($_SERVER['REQUEST_URI']) ) );
 
155
         exit;
 
156
}
 
157
 
 
158
$wp_list_table->prepare_items();
 
159
 
 
160
wp_enqueue_script('inline-edit-post');
 
161
 
 
162
$title = $post_type_object->labels->name;
 
163
 
 
164
if ( 'post' == $post_type ) {
 
165
        get_current_screen()->add_help_tab( array(
 
166
        'id'            => 'overview',
 
167
        'title'         => __('Overview'),
 
168
        'content'       =>
 
169
                '<p>' . __('This screen provides access to all of your posts. You can customize the display of this screen to suit your workflow.') . '</p>'
 
170
        ) );
 
171
        get_current_screen()->add_help_tab( array(
 
172
        'id'            => 'screen-content',
 
173
        'title'         => __('Screen Content'),
 
174
        'content'       =>
 
175
                '<p>' . __('You can customize the display of this screen&#8217;s contents in a number of ways:') . '</p>' .
 
176
                '<ul>' .
 
177
                        '<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>' .
 
178
                        '<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>' .
 
179
                        '<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>' .
 
180
                        '<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>' .
 
181
                '</ul>'
 
182
        ) );
 
183
        get_current_screen()->add_help_tab( array(
 
184
        'id'            => 'action-links',
 
185
        'title'         => __('Available Actions'),
 
186
        'content'       =>
 
187
                '<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>' .
 
188
                '<ul>' .
 
189
                        '<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>' .
 
190
                        '<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>' .
 
191
                        '<li>' . __('<strong>Trash</strong> removes your post from this list and places it in the trash, from which you can permanently delete it.') . '</li>' .
 
192
                        '<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>' .
 
193
                '</ul>'
 
194
        ) );
 
195
        get_current_screen()->add_help_tab( array(
 
196
        'id'            => 'bulk-actions',
 
197
        'title'         => __('Bulk Actions'),
 
198
        'content'       =>
 
199
                '<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>' .
 
200
                                '<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>'
 
201
        ) );
 
202
 
 
203
        get_current_screen()->set_help_sidebar(
 
204
        '<p><strong>' . __('For more information:') . '</strong></p>' .
 
205
        '<p>' . __('<a href="http://codex.wordpress.org/Posts_Screen" target="_blank">Documentation on Managing Posts</a>') . '</p>' .
 
206
        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
 
207
        );
 
208
 
 
209
} elseif ( 'page' == $post_type ) {
 
210
        get_current_screen()->add_help_tab( array(
 
211
        'id'            => 'overview',
 
212
        'title'         => __('Overview'),
 
213
        'content'       =>
 
214
                '<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>'
 
215
        ) );
 
216
        get_current_screen()->add_help_tab( array(
 
217
        'id'            => 'managing-pages',
 
218
        'title'         => __('Managing Pages'),
 
219
        'content'       =>
 
220
                '<p>' . __('Managing pages is very similar to managing posts, and the screens can be customized in the same way.') . '</p>' .
 
221
                '<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>'
 
222
        ) );
 
223
 
 
224
        get_current_screen()->set_help_sidebar(
 
225
        '<p><strong>' . __('For more information:') . '</strong></p>' .
 
226
        '<p>' . __('<a href="http://codex.wordpress.org/Pages_Screen" target="_blank">Documentation on Managing Pages</a>') . '</p>' .
 
227
        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
 
228
        );
 
229
}
 
230
 
 
231
add_screen_option( 'per_page', array( 'label' => $title, 'default' => 20, 'option' => 'edit_' . $post_type . '_per_page' ) );
 
232
 
 
233
$bulk_counts = array(
 
234
        'updated'   => isset( $_REQUEST['updated'] )   ? absint( $_REQUEST['updated'] )   : 0,
 
235
        'locked'    => isset( $_REQUEST['locked'] )    ? absint( $_REQUEST['locked'] )    : 0,
 
236
        'deleted'   => isset( $_REQUEST['deleted'] )   ? absint( $_REQUEST['deleted'] )   : 0,
 
237
        'trashed'   => isset( $_REQUEST['trashed'] )   ? absint( $_REQUEST['trashed'] )   : 0,
 
238
        'untrashed' => isset( $_REQUEST['untrashed'] ) ? absint( $_REQUEST['untrashed'] ) : 0,
 
239
);
 
240
 
 
241
$bulk_messages = array();
 
242
$bulk_messages['post'] = array(
 
243
        'updated'   => _n( '%s post updated.', '%s posts updated.', $bulk_counts['updated'] ),
 
244
        'locked'    => _n( '%s post not updated, somebody is editing it.', '%s posts not updated, somebody is editing them.', $bulk_counts['locked'] ),
 
245
        'deleted'   => _n( '%s post permanently deleted.', '%s posts permanently deleted.', $bulk_counts['deleted'] ),
 
246
        'trashed'   => _n( '%s post moved to the Trash.', '%s posts moved to the Trash.', $bulk_counts['trashed'] ),
 
247
        'untrashed' => _n( '%s post restored from the Trash.', '%s posts restored from the Trash.', $bulk_counts['untrashed'] ),
 
248
);
 
249
$bulk_messages['page'] = array(
 
250
        'updated'   => _n( '%s page updated.', '%s pages updated.', $bulk_counts['updated'] ),
 
251
        'locked'    => _n( '%s page not updated, somebody is editing it.', '%s pages not updated, somebody is editing them.', $bulk_counts['locked'] ),
 
252
        'deleted'   => _n( '%s page permanently deleted.', '%s pages permanently deleted.', $bulk_counts['deleted'] ),
 
253
        'trashed'   => _n( '%s page moved to the Trash.', '%s pages moved to the Trash.', $bulk_counts['trashed'] ),
 
254
        'untrashed' => _n( '%s page restored from the Trash.', '%s pages restored from the Trash.', $bulk_counts['untrashed'] ),
 
255
);
 
256
 
 
257
/**
 
258
 * Filter the bulk action updated messages.
 
259
 *
 
260
 * By default, custom post types use the messages for the 'post' post type.
 
261
 *
 
262
 * @since 3.7.0
 
263
 *
 
264
 * @param array $bulk_messages Arrays of messages, each keyed by the corresponding post type. Messages are
 
265
 *                             keyed with 'updated', 'locked', 'deleted', 'trashed', and 'untrashed'.
 
266
 * @param array $bulk_counts   Array of item counts for each message, used to build internationalized strings.
 
267
 */
 
268
$bulk_messages = apply_filters( 'bulk_post_updated_messages', $bulk_messages, $bulk_counts );
 
269
$bulk_counts = array_filter( $bulk_counts );
 
270
 
 
271
require_once( ABSPATH . 'wp-admin/admin-header.php' );
 
272
?>
 
273
<div class="wrap">
 
274
<h2><?php
 
275
echo esc_html( $post_type_object->labels->name );
 
276
if ( current_user_can( $post_type_object->cap->create_posts ) )
 
277
        echo ' <a href="' . esc_url( admin_url( $post_new_file ) ) . '" class="add-new-h2">' . esc_html( $post_type_object->labels->add_new ) . '</a>';
 
278
if ( ! empty( $_REQUEST['s'] ) )
 
279
        printf( ' <span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', get_search_query() );
 
280
?></h2>
 
281
 
 
282
<?php
 
283
// If we have a bulk message to issue:
 
284
$messages = array();
 
285
foreach ( $bulk_counts as $message => $count ) {
 
286
        if ( isset( $bulk_messages[ $post_type ][ $message ] ) )
 
287
                $messages[] = sprintf( $bulk_messages[ $post_type ][ $message ], number_format_i18n( $count ) );
 
288
        elseif ( isset( $bulk_messages['post'][ $message ] ) )
 
289
                $messages[] = sprintf( $bulk_messages['post'][ $message ], number_format_i18n( $count ) );
 
290
 
 
291
        if ( $message == 'trashed' && isset( $_REQUEST['ids'] ) ) {
 
292
                $ids = preg_replace( '/[^0-9,]/', '', $_REQUEST['ids'] );
 
293
                $messages[] = '<a href="' . esc_url( wp_nonce_url( "edit.php?post_type=$post_type&doaction=undo&action=untrash&ids=$ids", "bulk-posts" ) ) . '">' . __('Undo') . '</a>';
 
294
        }
 
295
}
 
296
 
 
297
if ( $messages )
 
298
        echo '<div id="message" class="updated"><p>' . join( ' ', $messages ) . '</p></div>';
 
299
unset( $messages );
 
300
 
 
301
$_SERVER['REQUEST_URI'] = remove_query_arg( array( 'locked', 'skipped', 'updated', 'deleted', 'trashed', 'untrashed' ), $_SERVER['REQUEST_URI'] );
 
302
?>
 
303
 
 
304
<?php $wp_list_table->views(); ?>
 
305
 
 
306
<form id="posts-filter" action="" method="get">
 
307
 
 
308
<?php $wp_list_table->search_box( $post_type_object->labels->search_items, 'post' ); ?>
 
309
 
 
310
<input type="hidden" name="post_status" class="post_status_page" value="<?php echo !empty($_REQUEST['post_status']) ? esc_attr($_REQUEST['post_status']) : 'all'; ?>" />
 
311
<input type="hidden" name="post_type" class="post_type_page" value="<?php echo $post_type; ?>" />
 
312
<?php if ( ! empty( $_REQUEST['show_sticky'] ) ) { ?>
 
313
<input type="hidden" name="show_sticky" value="1" />
 
314
<?php } ?>
 
315
 
 
316
<?php $wp_list_table->display(); ?>
 
317
 
 
318
</form>
 
319
 
 
320
<?php
 
321
if ( $wp_list_table->has_items() )
 
322
        $wp_list_table->inline_edit();
 
323
?>
 
324
 
 
325
<div id="ajax-response"></div>
 
326
<br class="clear" />
 
327
</div>
 
328
 
 
329
<?php
 
330
include( ABSPATH . 'wp-admin/admin-footer.php' );