~canonical-sysadmins/wordpress/4.7.2

« back to all changes in this revision

Viewing changes to wp-admin/includes/meta-boxes.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
// -- Post related Meta Boxes
 
4
 
 
5
/**
 
6
 * Display post submit form fields.
 
7
 *
 
8
 * @since 2.7.0
 
9
 *
 
10
 * @param object $post
 
11
 */
 
12
function post_submit_meta_box($post, $args = array() ) {
 
13
        global $action;
 
14
 
 
15
        $post_type = $post->post_type;
 
16
        $post_type_object = get_post_type_object($post_type);
 
17
        $can_publish = current_user_can($post_type_object->cap->publish_posts);
 
18
?>
 
19
<div class="submitbox" id="submitpost">
 
20
 
 
21
<div id="minor-publishing">
 
22
 
 
23
<?php // Hidden submit button early on so that the browser chooses the right button when form is submitted with Return key ?>
 
24
<div style="display:none;">
 
25
<?php submit_button( __( 'Save' ), 'button', 'save' ); ?>
 
26
</div>
 
27
 
 
28
<div id="minor-publishing-actions">
 
29
<div id="save-action">
 
30
<?php if ( 'publish' != $post->post_status && 'future' != $post->post_status && 'pending' != $post->post_status ) { ?>
 
31
<input <?php if ( 'private' == $post->post_status ) { ?>style="display:none"<?php } ?> type="submit" name="save" id="save-post" value="<?php esc_attr_e('Save Draft'); ?>" class="button" />
 
32
<?php } elseif ( 'pending' == $post->post_status && $can_publish ) { ?>
 
33
<input type="submit" name="save" id="save-post" value="<?php esc_attr_e('Save as Pending'); ?>" class="button" />
 
34
<?php } ?>
 
35
<span class="spinner"></span>
 
36
</div>
 
37
<?php if ( $post_type_object->public ) : ?>
 
38
<div id="preview-action">
 
39
<?php
 
40
if ( 'publish' == $post->post_status ) {
 
41
        $preview_link = esc_url( get_permalink( $post->ID ) );
 
42
        $preview_button = __( 'Preview Changes' );
 
43
} else {
 
44
        $preview_link = set_url_scheme( get_permalink( $post->ID ) );
 
45
 
 
46
        /**
 
47
         * Filter the URI of a post preview in the post submit box.
 
48
         *
 
49
         * @since 2.0.5
 
50
         * @since 4.0.0 $post parameter was added.
 
51
         *
 
52
         * @param string  $preview_link URI the user will be directed to for a post preview.
 
53
         * @param WP_Post $post         Post object.
 
54
         */
 
55
        $preview_link = esc_url( apply_filters( 'preview_post_link', add_query_arg( 'preview', 'true', $preview_link ), $post ) );
 
56
        $preview_button = __( 'Preview' );
 
57
}
 
58
?>
 
59
<a class="preview button" href="<?php echo $preview_link; ?>" target="wp-preview-<?php echo (int) $post->ID; ?>" id="post-preview"><?php echo $preview_button; ?></a>
 
60
<input type="hidden" name="wp-preview" id="wp-preview" value="" />
 
61
</div>
 
62
<?php endif; // public post type ?>
 
63
<div class="clear"></div>
 
64
</div><!-- #minor-publishing-actions -->
 
65
 
 
66
<div id="misc-publishing-actions">
 
67
 
 
68
<div class="misc-pub-section misc-pub-post-status"><label for="post_status"><?php _e('Status:') ?></label>
 
69
<span id="post-status-display">
 
70
<?php
 
71
switch ( $post->post_status ) {
 
72
        case 'private':
 
73
                _e('Privately Published');
 
74
                break;
 
75
        case 'publish':
 
76
                _e('Published');
 
77
                break;
 
78
        case 'future':
 
79
                _e('Scheduled');
 
80
                break;
 
81
        case 'pending':
 
82
                _e('Pending Review');
 
83
                break;
 
84
        case 'draft':
 
85
        case 'auto-draft':
 
86
                _e('Draft');
 
87
                break;
 
88
}
 
89
?>
 
90
</span>
 
91
<?php if ( 'publish' == $post->post_status || 'private' == $post->post_status || $can_publish ) { ?>
 
92
<a href="#post_status" <?php if ( 'private' == $post->post_status ) { ?>style="display:none;" <?php } ?>class="edit-post-status hide-if-no-js"><span aria-hidden="true"><?php _e( 'Edit' ); ?></span> <span class="screen-reader-text"><?php _e( 'Edit status' ); ?></span></a>
 
93
 
 
94
<div id="post-status-select" class="hide-if-js">
 
95
<input type="hidden" name="hidden_post_status" id="hidden_post_status" value="<?php echo esc_attr( ('auto-draft' == $post->post_status ) ? 'draft' : $post->post_status); ?>" />
 
96
<select name='post_status' id='post_status'>
 
97
<?php if ( 'publish' == $post->post_status ) : ?>
 
98
<option<?php selected( $post->post_status, 'publish' ); ?> value='publish'><?php _e('Published') ?></option>
 
99
<?php elseif ( 'private' == $post->post_status ) : ?>
 
100
<option<?php selected( $post->post_status, 'private' ); ?> value='publish'><?php _e('Privately Published') ?></option>
 
101
<?php elseif ( 'future' == $post->post_status ) : ?>
 
102
<option<?php selected( $post->post_status, 'future' ); ?> value='future'><?php _e('Scheduled') ?></option>
 
103
<?php endif; ?>
 
104
<option<?php selected( $post->post_status, 'pending' ); ?> value='pending'><?php _e('Pending Review') ?></option>
 
105
<?php if ( 'auto-draft' == $post->post_status ) : ?>
 
106
<option<?php selected( $post->post_status, 'auto-draft' ); ?> value='draft'><?php _e('Draft') ?></option>
 
107
<?php else : ?>
 
108
<option<?php selected( $post->post_status, 'draft' ); ?> value='draft'><?php _e('Draft') ?></option>
 
109
<?php endif; ?>
 
110
</select>
 
111
 <a href="#post_status" class="save-post-status hide-if-no-js button"><?php _e('OK'); ?></a>
 
112
 <a href="#post_status" class="cancel-post-status hide-if-no-js button-cancel"><?php _e('Cancel'); ?></a>
 
113
</div>
 
114
 
 
115
<?php } ?>
 
116
</div><!-- .misc-pub-section -->
 
117
 
 
118
<div class="misc-pub-section misc-pub-visibility" id="visibility">
 
119
<?php _e('Visibility:'); ?> <span id="post-visibility-display"><?php
 
120
 
 
121
if ( 'private' == $post->post_status ) {
 
122
        $post->post_password = '';
 
123
        $visibility = 'private';
 
124
        $visibility_trans = __('Private');
 
125
} elseif ( !empty( $post->post_password ) ) {
 
126
        $visibility = 'password';
 
127
        $visibility_trans = __('Password protected');
 
128
} elseif ( $post_type == 'post' && is_sticky( $post->ID ) ) {
 
129
        $visibility = 'public';
 
130
        $visibility_trans = __('Public, Sticky');
 
131
} else {
 
132
        $visibility = 'public';
 
133
        $visibility_trans = __('Public');
 
134
}
 
135
 
 
136
echo esc_html( $visibility_trans ); ?></span>
 
137
<?php if ( $can_publish ) { ?>
 
138
<a href="#visibility" class="edit-visibility hide-if-no-js"><span aria-hidden="true"><?php _e( 'Edit' ); ?></span> <span class="screen-reader-text"><?php _e( 'Edit visibility' ); ?></span></a>
 
139
 
 
140
<div id="post-visibility-select" class="hide-if-js">
 
141
<input type="hidden" name="hidden_post_password" id="hidden-post-password" value="<?php echo esc_attr($post->post_password); ?>" />
 
142
<?php if ($post_type == 'post'): ?>
 
143
<input type="checkbox" style="display:none" name="hidden_post_sticky" id="hidden-post-sticky" value="sticky" <?php checked(is_sticky($post->ID)); ?> />
 
144
<?php endif; ?>
 
145
<input type="hidden" name="hidden_post_visibility" id="hidden-post-visibility" value="<?php echo esc_attr( $visibility ); ?>" />
 
146
<input type="radio" name="visibility" id="visibility-radio-public" value="public" <?php checked( $visibility, 'public' ); ?> /> <label for="visibility-radio-public" class="selectit"><?php _e('Public'); ?></label><br />
 
147
<?php if ( $post_type == 'post' && current_user_can( 'edit_others_posts' ) ) : ?>
 
148
<span id="sticky-span"><input id="sticky" name="sticky" type="checkbox" value="sticky" <?php checked( is_sticky( $post->ID ) ); ?> /> <label for="sticky" class="selectit"><?php _e( 'Stick this post to the front page' ); ?></label><br /></span>
 
149
<?php endif; ?>
 
150
<input type="radio" name="visibility" id="visibility-radio-password" value="password" <?php checked( $visibility, 'password' ); ?> /> <label for="visibility-radio-password" class="selectit"><?php _e('Password protected'); ?></label><br />
 
151
<span id="password-span"><label for="post_password"><?php _e('Password:'); ?></label> <input type="text" name="post_password" id="post_password" value="<?php echo esc_attr($post->post_password); ?>"  maxlength="20" /><br /></span>
 
152
<input type="radio" name="visibility" id="visibility-radio-private" value="private" <?php checked( $visibility, 'private' ); ?> /> <label for="visibility-radio-private" class="selectit"><?php _e('Private'); ?></label><br />
 
153
 
 
154
<p>
 
155
 <a href="#visibility" class="save-post-visibility hide-if-no-js button"><?php _e('OK'); ?></a>
 
156
 <a href="#visibility" class="cancel-post-visibility hide-if-no-js button-cancel"><?php _e('Cancel'); ?></a>
 
157
</p>
 
158
</div>
 
159
<?php } ?>
 
160
 
 
161
</div><!-- .misc-pub-section -->
 
162
 
 
163
<?php
 
164
/* translators: Publish box date format, see http://php.net/date */
 
165
$datef = __( 'M j, Y @ G:i' );
 
166
if ( 0 != $post->ID ) {
 
167
        if ( 'future' == $post->post_status ) { // scheduled for publishing at a future date
 
168
                $stamp = __('Scheduled for: <b>%1$s</b>');
 
169
        } else if ( 'publish' == $post->post_status || 'private' == $post->post_status ) { // already published
 
170
                $stamp = __('Published on: <b>%1$s</b>');
 
171
        } else if ( '0000-00-00 00:00:00' == $post->post_date_gmt ) { // draft, 1 or more saves, no date specified
 
172
                $stamp = __('Publish <b>immediately</b>');
 
173
        } else if ( time() < strtotime( $post->post_date_gmt . ' +0000' ) ) { // draft, 1 or more saves, future date specified
 
174
                $stamp = __('Schedule for: <b>%1$s</b>');
 
175
        } else { // draft, 1 or more saves, date specified
 
176
                $stamp = __('Publish on: <b>%1$s</b>');
 
177
        }
 
178
        $date = date_i18n( $datef, strtotime( $post->post_date ) );
 
179
} else { // draft (no saves, and thus no date specified)
 
180
        $stamp = __('Publish <b>immediately</b>');
 
181
        $date = date_i18n( $datef, strtotime( current_time('mysql') ) );
 
182
}
 
183
 
 
184
if ( ! empty( $args['args']['revisions_count'] ) ) :
 
185
        $revisions_to_keep = wp_revisions_to_keep( $post );
 
186
?>
 
187
<div class="misc-pub-section misc-pub-revisions">
 
188
<?php
 
189
        if ( $revisions_to_keep > 0 && $revisions_to_keep <= $args['args']['revisions_count'] ) {
 
190
                echo '<span title="' . esc_attr( sprintf( __( 'Your site is configured to keep only the last %s revisions.' ),
 
191
                        number_format_i18n( $revisions_to_keep ) ) ) . '">';
 
192
                printf( __( 'Revisions: %s' ), '<b>' . number_format_i18n( $args['args']['revisions_count'] ) . '+</b>' );
 
193
                echo '</span>';
 
194
        } else {
 
195
                printf( __( 'Revisions: %s' ), '<b>' . number_format_i18n( $args['args']['revisions_count'] ) . '</b>' );
 
196
        }
 
197
?>
 
198
        <a class="hide-if-no-js" href="<?php echo esc_url( get_edit_post_link( $args['args']['revision_id'] ) ); ?>"><span aria-hidden="true"><?php _ex( 'Browse', 'revisions' ); ?></span> <span class="screen-reader-text"><?php _e( 'Browse revisions' ); ?></span></a>
 
199
</div>
 
200
<?php endif;
 
201
 
 
202
if ( $can_publish ) : // Contributors don't get to choose the date of publish ?>
 
203
<div class="misc-pub-section curtime misc-pub-curtime">
 
204
        <span id="timestamp">
 
205
        <?php printf($stamp, $date); ?></span>
 
206
        <a href="#edit_timestamp" class="edit-timestamp hide-if-no-js"><span aria-hidden="true"><?php _e( 'Edit' ); ?></span> <span class="screen-reader-text"><?php _e( 'Edit date and time' ); ?></span></a>
 
207
        <div id="timestampdiv" class="hide-if-js"><?php touch_time(($action == 'edit'), 1); ?></div>
 
208
</div><?php // /misc-pub-section ?>
 
209
<?php endif; ?>
 
210
 
 
211
<?php
 
212
/**
 
213
 * Fires after the post time/date setting in the Publish meta box.
 
214
 *
 
215
 * @since 2.9.0
 
216
 */
 
217
do_action( 'post_submitbox_misc_actions' );
 
218
?>
 
219
</div>
 
220
<div class="clear"></div>
 
221
</div>
 
222
 
 
223
<div id="major-publishing-actions">
 
224
<?php
 
225
/**
 
226
 * Fires at the beginning of the publishing actions section of the Publish meta box.
 
227
 *
 
228
 * @since 2.7.0
 
229
 */
 
230
do_action( 'post_submitbox_start' );
 
231
?>
 
232
<div id="delete-action">
 
233
<?php
 
234
if ( current_user_can( "delete_post", $post->ID ) ) {
 
235
        if ( !EMPTY_TRASH_DAYS )
 
236
                $delete_text = __('Delete Permanently');
 
237
        else
 
238
                $delete_text = __('Move to Trash');
 
239
        ?>
 
240
<a class="submitdelete deletion" href="<?php echo get_delete_post_link($post->ID); ?>"><?php echo $delete_text; ?></a><?php
 
241
} ?>
 
242
</div>
 
243
 
 
244
<div id="publishing-action">
 
245
<span class="spinner"></span>
 
246
<?php
 
247
if ( !in_array( $post->post_status, array('publish', 'future', 'private') ) || 0 == $post->ID ) {
 
248
        if ( $can_publish ) :
 
249
                if ( !empty($post->post_date_gmt) && time() < strtotime( $post->post_date_gmt . ' +0000' ) ) : ?>
 
250
                <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Schedule') ?>" />
 
251
                <?php submit_button( __( 'Schedule' ), 'primary button-large', 'publish', false, array( 'accesskey' => 'p' ) ); ?>
 
252
<?php   else : ?>
 
253
                <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Publish') ?>" />
 
254
                <?php submit_button( __( 'Publish' ), 'primary button-large', 'publish', false, array( 'accesskey' => 'p' ) ); ?>
 
255
<?php   endif;
 
256
        else : ?>
 
257
                <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Submit for Review') ?>" />
 
258
                <?php submit_button( __( 'Submit for Review' ), 'primary button-large', 'publish', false, array( 'accesskey' => 'p' ) ); ?>
 
259
<?php
 
260
        endif;
 
261
} else { ?>
 
262
                <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Update') ?>" />
 
263
                <input name="save" type="submit" class="button button-primary button-large" id="publish" accesskey="p" value="<?php esc_attr_e('Update') ?>" />
 
264
<?php
 
265
} ?>
 
266
</div>
 
267
<div class="clear"></div>
 
268
</div>
 
269
</div>
 
270
 
 
271
<?php
 
272
}
 
273
 
 
274
/**
 
275
 * Display attachment submit form fields.
 
276
 *
 
277
 * @since 3.5.0
 
278
 *
 
279
 * @param object $post
 
280
 */
 
281
function attachment_submit_meta_box( $post ) {
 
282
?>
 
283
<div class="submitbox" id="submitpost">
 
284
 
 
285
<div id="minor-publishing">
 
286
 
 
287
<?php // Hidden submit button early on so that the browser chooses the right button when form is submitted with Return key ?>
 
288
<div style="display:none;">
 
289
<?php submit_button( __( 'Save' ), 'button', 'save' ); ?>
 
290
</div>
 
291
 
 
292
 
 
293
<div id="misc-publishing-actions">
 
294
        <?php
 
295
        /* translators: Publish box date format, see http://php.net/date */
 
296
        $datef = __( 'M j, Y @ G:i' );
 
297
        $stamp = __('Uploaded on: <b>%1$s</b>');
 
298
        $date = date_i18n( $datef, strtotime( $post->post_date ) );
 
299
        ?>
 
300
        <div class="misc-pub-section curtime misc-pub-curtime">
 
301
                <span id="timestamp"><?php printf($stamp, $date); ?></span>
 
302
        </div><!-- .misc-pub-section -->
 
303
 
 
304
        <?php
 
305
        /**
 
306
         * Fires after the 'Uploaded on' section of the Save meta box
 
307
         * in the attachment editing screen.
 
308
         *
 
309
         * @since 3.5.0
 
310
         */
 
311
        do_action( 'attachment_submitbox_misc_actions' );
 
312
        ?>
 
313
</div><!-- #misc-publishing-actions -->
 
314
<div class="clear"></div>
 
315
</div><!-- #minor-publishing -->
 
316
 
 
317
<div id="major-publishing-actions">
 
318
        <div id="delete-action">
 
319
        <?php
 
320
        if ( current_user_can( 'delete_post', $post->ID ) )
 
321
                if ( EMPTY_TRASH_DAYS && MEDIA_TRASH ) {
 
322
                        echo "<a class='submitdelete deletion' href='" . get_delete_post_link( $post->ID ) . "'>" . __( 'Trash' ) . "</a>";
 
323
                } else {
 
324
                        $delete_ays = ! MEDIA_TRASH ? " onclick='return showNotice.warn();'" : '';
 
325
                        echo  "<a class='submitdelete deletion'$delete_ays href='" . get_delete_post_link( $post->ID, null, true ) . "'>" . __( 'Delete Permanently' ) . "</a>";
 
326
                }
 
327
        ?>
 
328
        </div>
 
329
 
 
330
        <div id="publishing-action">
 
331
                <span class="spinner"></span>
 
332
                <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Update') ?>" />
 
333
                <input name="save" type="submit" class="button-primary button-large" id="publish" accesskey="p" value="<?php esc_attr_e('Update') ?>" />
 
334
        </div>
 
335
        <div class="clear"></div>
 
336
</div><!-- #major-publishing-actions -->
 
337
 
 
338
</div>
 
339
 
 
340
<?php
 
341
}
 
342
 
 
343
/**
 
344
 * Display post format form elements.
 
345
 *
 
346
 * @since 3.1.0
 
347
 *
 
348
 * @param WP_Post $post Post object.
 
349
 * @param array   $box {
 
350
 *     Post formats meta box arguments.
 
351
 *
 
352
 *     @type string   $id       Meta box ID.
 
353
 *     @type string   $title    Meta box title.
 
354
 *     @type callback $callback Meta box display callback.
 
355
 *     @type array    $args     Extra meta box arguments.
 
356
 * }
 
357
 */
 
358
function post_format_meta_box( $post, $box ) {
 
359
        if ( current_theme_supports( 'post-formats' ) && post_type_supports( $post->post_type, 'post-formats' ) ) :
 
360
        $post_formats = get_theme_support( 'post-formats' );
 
361
 
 
362
        if ( is_array( $post_formats[0] ) ) :
 
363
                $post_format = get_post_format( $post->ID );
 
364
                if ( !$post_format )
 
365
                        $post_format = '0';
 
366
                // Add in the current one if it isn't there yet, in case the current theme doesn't support it
 
367
                if ( $post_format && !in_array( $post_format, $post_formats[0] ) )
 
368
                        $post_formats[0][] = $post_format;
 
369
        ?>
 
370
        <div id="post-formats-select">
 
371
                <input type="radio" name="post_format" class="post-format" id="post-format-0" value="0" <?php checked( $post_format, '0' ); ?> /> <label for="post-format-0" class="post-format-icon post-format-standard"><?php echo get_post_format_string( 'standard' ); ?></label>
 
372
                <?php foreach ( $post_formats[0] as $format ) : ?>
 
373
                <br /><input type="radio" name="post_format" class="post-format" id="post-format-<?php echo esc_attr( $format ); ?>" value="<?php echo esc_attr( $format ); ?>" <?php checked( $post_format, $format ); ?> /> <label for="post-format-<?php echo esc_attr( $format ); ?>" class="post-format-icon post-format-<?php echo esc_attr( $format ); ?>"><?php echo esc_html( get_post_format_string( $format ) ); ?></label>
 
374
                <?php endforeach; ?><br />
 
375
        </div>
 
376
        <?php endif; endif;
 
377
}
 
378
 
 
379
/**
 
380
 * Display post tags form fields.
 
381
 *
 
382
 * @since 2.6.0
 
383
 *
 
384
 * @todo Create taxonomy-agnostic wrapper for this.
 
385
 *
 
386
 * @param WP_Post $post Post object.
 
387
 * @param array   $box {
 
388
 *     Tags meta box arguments.
 
389
 *
 
390
 *     @type string   $id       Meta box ID.
 
391
 *     @type string   $title    Meta box title.
 
392
 *     @type callback $callback Meta box display callback.
 
393
 *     @type array    $args {
 
394
 *         Extra meta box arguments.
 
395
 *
 
396
 *         @type string $taxonomy Taxonomy. Default 'post_tag'.
 
397
 *     }
 
398
 * }
 
399
 */
 
400
function post_tags_meta_box( $post, $box ) {
 
401
        $defaults = array( 'taxonomy' => 'post_tag' );
 
402
        if ( ! isset( $box['args'] ) || ! is_array( $box['args'] ) ) {
 
403
                $args = array();
 
404
        } else {
 
405
                $args = $box['args'];
 
406
        }
 
407
        $r = wp_parse_args( $args, $defaults );
 
408
        $tax_name = esc_attr( $r['taxonomy'] );
 
409
        $taxonomy = get_taxonomy( $r['taxonomy'] );
 
410
        $user_can_assign_terms = current_user_can( $taxonomy->cap->assign_terms );
 
411
        $comma = _x( ',', 'tag delimiter' );
 
412
?>
 
413
<div class="tagsdiv" id="<?php echo $tax_name; ?>">
 
414
        <div class="jaxtag">
 
415
        <div class="nojs-tags hide-if-js">
 
416
        <p><?php echo $taxonomy->labels->add_or_remove_items; ?></p>
 
417
        <textarea name="<?php echo "tax_input[$tax_name]"; ?>" rows="3" cols="20" class="the-tags" id="tax-input-<?php echo $tax_name; ?>" <?php disabled( ! $user_can_assign_terms ); ?>><?php echo str_replace( ',', $comma . ' ', get_terms_to_edit( $post->ID, $tax_name ) ); // textarea_escaped by esc_attr() ?></textarea></div>
 
418
        <?php if ( $user_can_assign_terms ) : ?>
 
419
        <div class="ajaxtag hide-if-no-js">
 
420
                <label class="screen-reader-text" for="new-tag-<?php echo $tax_name; ?>"><?php echo $box['title']; ?></label>
 
421
                <div class="taghint"><?php echo $taxonomy->labels->add_new_item; ?></div>
 
422
                <p><input type="text" id="new-tag-<?php echo $tax_name; ?>" name="newtag[<?php echo $tax_name; ?>]" class="newtag form-input-tip" size="16" autocomplete="off" value="" />
 
423
                <input type="button" class="button tagadd" value="<?php esc_attr_e('Add'); ?>" /></p>
 
424
        </div>
 
425
        <p class="howto"><?php echo $taxonomy->labels->separate_items_with_commas; ?></p>
 
426
        <?php endif; ?>
 
427
        </div>
 
428
        <div class="tagchecklist"></div>
 
429
</div>
 
430
<?php if ( $user_can_assign_terms ) : ?>
 
431
<p class="hide-if-no-js"><a href="#titlediv" class="tagcloud-link" id="link-<?php echo $tax_name; ?>"><?php echo $taxonomy->labels->choose_from_most_used; ?></a></p>
 
432
<?php endif; ?>
 
433
<?php
 
434
}
 
435
 
 
436
/**
 
437
 * Display post categories form fields.
 
438
 *
 
439
 * @since 2.6.0
 
440
 *
 
441
 * @todo Create taxonomy-agnostic wrapper for this.
 
442
 *
 
443
 * @param WP_Post $post Post object.
 
444
 * @param array   $box {
 
445
 *     Categories meta box arguments.
 
446
 *
 
447
 *     @type string   $id       Meta box ID.
 
448
 *     @type string   $title    Meta box title.
 
449
 *     @type callback $callback Meta box display callback.
 
450
 *     @type array    $args {
 
451
 *         Extra meta box arguments.
 
452
 *
 
453
 *         @type string $taxonomy Taxonomy. Default 'category'.
 
454
 *     }
 
455
 * }
 
456
 */
 
457
function post_categories_meta_box( $post, $box ) {
 
458
        $defaults = array( 'taxonomy' => 'category' );
 
459
        if ( ! isset( $box['args'] ) || ! is_array( $box['args'] ) ) {
 
460
                $args = array();
 
461
        } else {
 
462
                $args = $box['args'];
 
463
        }
 
464
        $r = wp_parse_args( $args, $defaults );
 
465
        $tax_name = esc_attr( $r['taxonomy'] );
 
466
        $taxonomy = get_taxonomy( $r['taxonomy'] );
 
467
        ?>
 
468
        <div id="taxonomy-<?php echo $tax_name; ?>" class="categorydiv">
 
469
                <ul id="<?php echo $tax_name; ?>-tabs" class="category-tabs">
 
470
                        <li class="tabs"><a href="#<?php echo $tax_name; ?>-all"><?php echo $taxonomy->labels->all_items; ?></a></li>
 
471
                        <li class="hide-if-no-js"><a href="#<?php echo $tax_name; ?>-pop"><?php _e( 'Most Used' ); ?></a></li>
 
472
                </ul>
 
473
 
 
474
                <div id="<?php echo $tax_name; ?>-pop" class="tabs-panel" style="display: none;">
 
475
                        <ul id="<?php echo $tax_name; ?>checklist-pop" class="categorychecklist form-no-clear" >
 
476
                                <?php $popular_ids = wp_popular_terms_checklist( $tax_name ); ?>
 
477
                        </ul>
 
478
                </div>
 
479
 
 
480
                <div id="<?php echo $tax_name; ?>-all" class="tabs-panel">
 
481
                        <?php
 
482
            $name = ( $tax_name == 'category' ) ? 'post_category' : 'tax_input[' . $tax_name . ']';
 
483
            echo "<input type='hidden' name='{$name}[]' value='0' />"; // Allows for an empty term set to be sent. 0 is an invalid Term ID and will be ignored by empty() checks.
 
484
            ?>
 
485
                        <ul id="<?php echo $tax_name; ?>checklist" data-wp-lists="list:<?php echo $tax_name; ?>" class="categorychecklist form-no-clear">
 
486
                                <?php wp_terms_checklist( $post->ID, array( 'taxonomy' => $tax_name, 'popular_cats' => $popular_ids ) ); ?>
 
487
                        </ul>
 
488
                </div>
 
489
        <?php if ( current_user_can( $taxonomy->cap->edit_terms ) ) : ?>
 
490
                        <div id="<?php echo $tax_name; ?>-adder" class="wp-hidden-children">
 
491
                                <h4>
 
492
                                        <a id="<?php echo $tax_name; ?>-add-toggle" href="#<?php echo $tax_name; ?>-add" class="hide-if-no-js">
 
493
                                                <?php
 
494
                                                        /* translators: %s: add new taxonomy label */
 
495
                                                        printf( __( '+ %s' ), $taxonomy->labels->add_new_item );
 
496
                                                ?>
 
497
                                        </a>
 
498
                                </h4>
 
499
                                <p id="<?php echo $tax_name; ?>-add" class="category-add wp-hidden-child">
 
500
                                        <label class="screen-reader-text" for="new<?php echo $tax_name; ?>"><?php echo $taxonomy->labels->add_new_item; ?></label>
 
501
                                        <input type="text" name="new<?php echo $tax_name; ?>" id="new<?php echo $tax_name; ?>" class="form-required form-input-tip" value="<?php echo esc_attr( $taxonomy->labels->new_item_name ); ?>" aria-required="true"/>
 
502
                                        <label class="screen-reader-text" for="new<?php echo $tax_name; ?>_parent">
 
503
                                                <?php echo $taxonomy->labels->parent_item_colon; ?>
 
504
                                        </label>
 
505
                                        <?php wp_dropdown_categories( array( 'taxonomy' => $tax_name, 'hide_empty' => 0, 'name' => 'new' . $tax_name . '_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => '&mdash; ' . $taxonomy->labels->parent_item . ' &mdash;' ) ); ?>
 
506
                                        <input type="button" id="<?php echo $tax_name; ?>-add-submit" data-wp-lists="add:<?php echo $tax_name; ?>checklist:<?php echo $tax_name; ?>-add" class="button category-add-submit" value="<?php echo esc_attr( $taxonomy->labels->add_new_item ); ?>" />
 
507
                                        <?php wp_nonce_field( 'add-' . $tax_name, '_ajax_nonce-add-' . $tax_name, false ); ?>
 
508
                                        <span id="<?php echo $tax_name; ?>-ajax-response"></span>
 
509
                                </p>
 
510
                        </div>
 
511
                <?php endif; ?>
 
512
        </div>
 
513
        <?php
 
514
}
 
515
 
 
516
/**
 
517
 * Display post excerpt form fields.
 
518
 *
 
519
 * @since 2.6.0
 
520
 *
 
521
 * @param object $post
 
522
 */
 
523
function post_excerpt_meta_box($post) {
 
524
?>
 
525
<label class="screen-reader-text" for="excerpt"><?php _e('Excerpt') ?></label><textarea rows="1" cols="40" name="excerpt" id="excerpt"><?php echo $post->post_excerpt; // textarea_escaped ?></textarea>
 
526
<p><?php _e('Excerpts are optional hand-crafted summaries of your content that can be used in your theme. <a href="http://codex.wordpress.org/Excerpt" target="_blank">Learn more about manual excerpts.</a>'); ?></p>
 
527
<?php
 
528
}
 
529
 
 
530
/**
 
531
 * Display trackback links form fields.
 
532
 *
 
533
 * @since 2.6.0
 
534
 *
 
535
 * @param object $post
 
536
 */
 
537
function post_trackback_meta_box($post) {
 
538
        $form_trackback = '<input type="text" name="trackback_url" id="trackback_url" class="code" value="'. esc_attr( str_replace("\n", ' ', $post->to_ping) ) .'" />';
 
539
        if ('' != $post->pinged) {
 
540
                $pings = '<p>'. __('Already pinged:') . '</p><ul>';
 
541
                $already_pinged = explode("\n", trim($post->pinged));
 
542
                foreach ($already_pinged as $pinged_url) {
 
543
                        $pings .= "\n\t<li>" . esc_html($pinged_url) . "</li>";
 
544
                }
 
545
                $pings .= '</ul>';
 
546
        }
 
547
 
 
548
?>
 
549
<p><label for="trackback_url"><?php _e('Send trackbacks to:'); ?></label> <?php echo $form_trackback; ?><br /> (<?php _e('Separate multiple URLs with spaces'); ?>)</p>
 
550
<p><?php _e('Trackbacks are a way to notify legacy blog systems that you&#8217;ve linked to them. If you link other WordPress sites they&#8217;ll be notified automatically using <a href="http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank">pingbacks</a>, no other action necessary.'); ?></p>
 
551
<?php
 
552
if ( ! empty($pings) )
 
553
        echo $pings;
 
554
}
 
555
 
 
556
/**
 
557
 * Display custom fields form fields.
 
558
 *
 
559
 * @since 2.6.0
 
560
 *
 
561
 * @param object $post
 
562
 */
 
563
function post_custom_meta_box($post) {
 
564
?>
 
565
<div id="postcustomstuff">
 
566
<div id="ajax-response"></div>
 
567
<?php
 
568
$metadata = has_meta($post->ID);
 
569
foreach ( $metadata as $key => $value ) {
 
570
        if ( is_protected_meta( $metadata[ $key ][ 'meta_key' ], 'post' ) || ! current_user_can( 'edit_post_meta', $post->ID, $metadata[ $key ][ 'meta_key' ] ) )
 
571
                unset( $metadata[ $key ] );
 
572
}
 
573
list_meta( $metadata );
 
574
meta_form( $post ); ?>
 
575
</div>
 
576
<p><?php _e('Custom fields can be used to add extra metadata to a post that you can <a href="http://codex.wordpress.org/Using_Custom_Fields" target="_blank">use in your theme</a>.'); ?></p>
 
577
<?php
 
578
}
 
579
 
 
580
/**
 
581
 * Display comments status form fields.
 
582
 *
 
583
 * @since 2.6.0
 
584
 *
 
585
 * @param object $post
 
586
 */
 
587
function post_comment_status_meta_box($post) {
 
588
?>
 
589
<input name="advanced_view" type="hidden" value="1" />
 
590
<p class="meta-options">
 
591
        <label for="comment_status" class="selectit"><input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> /> <?php _e( 'Allow comments.' ) ?></label><br />
 
592
        <label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked($post->ping_status, 'open'); ?> /> <?php printf( __( 'Allow <a href="%s" target="_blank">trackbacks and pingbacks</a> on this page.' ), __( 'http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments' ) ); ?></label>
 
593
        <?php
 
594
        /**
 
595
         * Fires at the end of the Discussion meta box on the post editing screen.
 
596
         *
 
597
         * @since 3.1.0
 
598
         *
 
599
         * @param WP_Post $post WP_Post object of the current post.
 
600
         */
 
601
        do_action( 'post_comment_status_meta_box-options', $post );
 
602
        ?>
 
603
</p>
 
604
<?php
 
605
}
 
606
 
 
607
/**
 
608
 * Display comments for post table header
 
609
 *
 
610
 * @since 3.0.0
 
611
 *
 
612
 * @param array $result table header rows
 
613
 * @return array
 
614
 */
 
615
function post_comment_meta_box_thead($result) {
 
616
        unset($result['cb'], $result['response']);
 
617
        return $result;
 
618
}
 
619
 
 
620
/**
 
621
 * Display comments for post.
 
622
 *
 
623
 * @since 2.8.0
 
624
 *
 
625
 * @param object $post
 
626
 */
 
627
function post_comment_meta_box( $post ) {
 
628
        wp_nonce_field( 'get-comments', 'add_comment_nonce', false );
 
629
        ?>
 
630
        <p class="hide-if-no-js" id="add-new-comment"><a class="button" href="#commentstatusdiv" onclick="window.commentReply && commentReply.addcomment(<?php echo $post->ID; ?>);return false;"><?php _e('Add comment'); ?></a></p>
 
631
        <?php
 
632
 
 
633
        $total = get_comments( array( 'post_id' => $post->ID, 'number' => 1, 'count' => true ) );
 
634
        $wp_list_table = _get_list_table('WP_Post_Comments_List_Table');
 
635
        $wp_list_table->display( true );
 
636
 
 
637
        if ( 1 > $total ) {
 
638
                echo '<p id="no-comments">' . __('No comments yet.') . '</p>';
 
639
        } else {
 
640
                $hidden = get_hidden_meta_boxes( get_current_screen() );
 
641
                if ( ! in_array('commentsdiv', $hidden) ) {
 
642
                        ?>
 
643
                        <script type="text/javascript">jQuery(document).ready(function(){commentsBox.get(<?php echo $total; ?>, 10);});</script>
 
644
                        <?php
 
645
                }
 
646
 
 
647
                ?>
 
648
                <p class="hide-if-no-js" id="show-comments"><a href="#commentstatusdiv" onclick="commentsBox.get(<?php echo $total; ?>);return false;"><?php _e('Show comments'); ?></a> <span class="spinner"></span></p>
 
649
                <?php
 
650
        }
 
651
 
 
652
        wp_comment_trashnotice();
 
653
}
 
654
 
 
655
/**
 
656
 * Display slug form fields.
 
657
 *
 
658
 * @since 2.6.0
 
659
 *
 
660
 * @param object $post
 
661
 */
 
662
function post_slug_meta_box($post) {
 
663
/** This filter is documented in wp-admin/edit-tag-form.php */
 
664
?>
 
665
<label class="screen-reader-text" for="post_name"><?php _e('Slug') ?></label><input name="post_name" type="text" size="13" id="post_name" value="<?php echo esc_attr( apply_filters( 'editable_slug', $post->post_name ) ); ?>" />
 
666
<?php
 
667
}
 
668
 
 
669
/**
 
670
 * Display form field with list of authors.
 
671
 *
 
672
 * @since 2.6.0
 
673
 *
 
674
 * @param object $post
 
675
 */
 
676
function post_author_meta_box($post) {
 
677
        global $user_ID;
 
678
?>
 
679
<label class="screen-reader-text" for="post_author_override"><?php _e('Author'); ?></label>
 
680
<?php
 
681
        wp_dropdown_users( array(
 
682
                'who' => 'authors',
 
683
                'name' => 'post_author_override',
 
684
                'selected' => empty($post->ID) ? $user_ID : $post->post_author,
 
685
                'include_selected' => true
 
686
        ) );
 
687
}
 
688
 
 
689
/**
 
690
 * Display list of revisions.
 
691
 *
 
692
 * @since 2.6.0
 
693
 *
 
694
 * @param object $post
 
695
 */
 
696
function post_revisions_meta_box( $post ) {
 
697
        wp_list_post_revisions( $post );
 
698
}
 
699
 
 
700
// -- Page related Meta Boxes
 
701
 
 
702
/**
 
703
 * Display page attributes form fields.
 
704
 *
 
705
 * @since 2.7.0
 
706
 *
 
707
 * @param object $post
 
708
 */
 
709
function page_attributes_meta_box($post) {
 
710
        $post_type_object = get_post_type_object($post->post_type);
 
711
        if ( $post_type_object->hierarchical ) {
 
712
                $dropdown_args = array(
 
713
                        'post_type'        => $post->post_type,
 
714
                        'exclude_tree'     => $post->ID,
 
715
                        'selected'         => $post->post_parent,
 
716
                        'name'             => 'parent_id',
 
717
                        'show_option_none' => __('(no parent)'),
 
718
                        'sort_column'      => 'menu_order, post_title',
 
719
                        'echo'             => 0,
 
720
                );
 
721
 
 
722
                /**
 
723
                 * Filter the arguments used to generate a Pages drop-down element.
 
724
                 *
 
725
                 * @since 3.3.0
 
726
                 *
 
727
                 * @see wp_dropdown_pages()
 
728
                 *
 
729
                 * @param array   $dropdown_args Array of arguments used to generate the pages drop-down.
 
730
                 * @param WP_Post $post          The current WP_Post object.
 
731
                 */
 
732
                $dropdown_args = apply_filters( 'page_attributes_dropdown_pages_args', $dropdown_args, $post );
 
733
                $pages = wp_dropdown_pages( $dropdown_args );
 
734
                if ( ! empty($pages) ) {
 
735
?>
 
736
<p><strong><?php _e('Parent') ?></strong></p>
 
737
<label class="screen-reader-text" for="parent_id"><?php _e('Parent') ?></label>
 
738
<?php echo $pages; ?>
 
739
<?php
 
740
                } // end empty pages check
 
741
        } // end hierarchical check.
 
742
        if ( 'page' == $post->post_type && 0 != count( get_page_templates( $post ) ) ) {
 
743
                $template = !empty($post->page_template) ? $post->page_template : false;
 
744
                ?>
 
745
<p><strong><?php _e('Template') ?></strong></p>
 
746
<label class="screen-reader-text" for="page_template"><?php _e('Page Template') ?></label><select name="page_template" id="page_template">
 
747
<option value='default'><?php _e('Default Template'); ?></option>
 
748
<?php page_template_dropdown($template); ?>
 
749
</select>
 
750
<?php
 
751
        } ?>
 
752
<p><strong><?php _e('Order') ?></strong></p>
 
753
<p><label class="screen-reader-text" for="menu_order"><?php _e('Order') ?></label><input name="menu_order" type="text" size="4" id="menu_order" value="<?php echo esc_attr($post->menu_order) ?>" /></p>
 
754
<p><?php if ( 'page' == $post->post_type ) _e( 'Need help? Use the Help tab in the upper right of your screen.' ); ?></p>
 
755
<?php
 
756
}
 
757
 
 
758
// -- Link related Meta Boxes
 
759
 
 
760
/**
 
761
 * Display link create form fields.
 
762
 *
 
763
 * @since 2.7.0
 
764
 *
 
765
 * @param object $link
 
766
 */
 
767
function link_submit_meta_box($link) {
 
768
?>
 
769
<div class="submitbox" id="submitlink">
 
770
 
 
771
<div id="minor-publishing">
 
772
 
 
773
<?php // Hidden submit button early on so that the browser chooses the right button when form is submitted with Return key ?>
 
774
<div style="display:none;">
 
775
<?php submit_button( __( 'Save' ), 'button', 'save', false ); ?>
 
776
</div>
 
777
 
 
778
<div id="minor-publishing-actions">
 
779
<div id="preview-action">
 
780
<?php if ( !empty($link->link_id) ) { ?>
 
781
        <a class="preview button" href="<?php echo $link->link_url; ?>" target="_blank"><?php _e('Visit Link'); ?></a>
 
782
<?php } ?>
 
783
</div>
 
784
<div class="clear"></div>
 
785
</div>
 
786
 
 
787
<div id="misc-publishing-actions">
 
788
<div class="misc-pub-section misc-pub-private">
 
789
        <label for="link_private" class="selectit"><input id="link_private" name="link_visible" type="checkbox" value="N" <?php checked($link->link_visible, 'N'); ?> /> <?php _e('Keep this link private') ?></label>
 
790
</div>
 
791
</div>
 
792
 
 
793
</div>
 
794
 
 
795
<div id="major-publishing-actions">
 
796
<?php
 
797
/** This action is documented in wp-admin/includes/meta-boxes.php */
 
798
do_action( 'post_submitbox_start' );
 
799
?>
 
800
<div id="delete-action">
 
801
<?php
 
802
if ( !empty($_GET['action']) && 'edit' == $_GET['action'] && current_user_can('manage_links') ) { ?>
 
803
        <a class="submitdelete deletion" href="<?php echo wp_nonce_url("link.php?action=delete&amp;link_id=$link->link_id", 'delete-bookmark_' . $link->link_id); ?>" onclick="if ( confirm('<?php echo esc_js(sprintf(__("You are about to delete this link '%s'\n 'Cancel' to stop, 'OK' to delete."), $link->link_name )); ?>') ) {return true;}return false;"><?php _e('Delete'); ?></a>
 
804
<?php } ?>
 
805
</div>
 
806
 
 
807
<div id="publishing-action">
 
808
<?php if ( !empty($link->link_id) ) { ?>
 
809
        <input name="save" type="submit" class="button-large button-primary" id="publish" accesskey="p" value="<?php esc_attr_e('Update Link') ?>" />
 
810
<?php } else { ?>
 
811
        <input name="save" type="submit" class="button-large button-primary" id="publish" accesskey="p" value="<?php esc_attr_e('Add Link') ?>" />
 
812
<?php } ?>
 
813
</div>
 
814
<div class="clear"></div>
 
815
</div>
 
816
<?php
 
817
/**
 
818
 * Fires at the end of the Publish box in the Link editing screen.
 
819
 *
 
820
 * @since 2.5.0
 
821
 */
 
822
do_action( 'submitlink_box' );
 
823
?>
 
824
<div class="clear"></div>
 
825
</div>
 
826
<?php
 
827
}
 
828
 
 
829
/**
 
830
 * Display link categories form fields.
 
831
 *
 
832
 * @since 2.6.0
 
833
 *
 
834
 * @param object $link
 
835
 */
 
836
function link_categories_meta_box($link) {
 
837
?>
 
838
<div id="taxonomy-linkcategory" class="categorydiv">
 
839
        <ul id="category-tabs" class="category-tabs">
 
840
                <li class="tabs"><a href="#categories-all"><?php _e( 'All Categories' ); ?></a></li>
 
841
                <li class="hide-if-no-js"><a href="#categories-pop"><?php _e( 'Most Used' ); ?></a></li>
 
842
        </ul>
 
843
 
 
844
        <div id="categories-all" class="tabs-panel">
 
845
                <ul id="categorychecklist" data-wp-lists="list:category" class="categorychecklist form-no-clear">
 
846
                        <?php
 
847
                        if ( isset($link->link_id) )
 
848
                                wp_link_category_checklist($link->link_id);
 
849
                        else
 
850
                                wp_link_category_checklist();
 
851
                        ?>
 
852
                </ul>
 
853
        </div>
 
854
 
 
855
        <div id="categories-pop" class="tabs-panel" style="display: none;">
 
856
                <ul id="categorychecklist-pop" class="categorychecklist form-no-clear">
 
857
                        <?php wp_popular_terms_checklist('link_category'); ?>
 
858
                </ul>
 
859
        </div>
 
860
 
 
861
        <div id="category-adder" class="wp-hidden-children">
 
862
                <h4><a id="category-add-toggle" href="#category-add"><?php _e( '+ Add New Category' ); ?></a></h4>
 
863
                <p id="link-category-add" class="wp-hidden-child">
 
864
                        <label class="screen-reader-text" for="newcat"><?php _e( '+ Add New Category' ); ?></label>
 
865
                        <input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php esc_attr_e( 'New category name' ); ?>" aria-required="true" />
 
866
                        <input type="button" id="link-category-add-submit" data-wp-lists="add:categorychecklist:link-category-add" class="button" value="<?php esc_attr_e( 'Add' ); ?>" />
 
867
                        <?php wp_nonce_field( 'add-link-category', '_ajax_nonce', false ); ?>
 
868
                        <span id="category-ajax-response"></span>
 
869
                </p>
 
870
        </div>
 
871
</div>
 
872
<?php
 
873
}
 
874
 
 
875
/**
 
876
 * Display form fields for changing link target.
 
877
 *
 
878
 * @since 2.6.0
 
879
 *
 
880
 * @param object $link
 
881
 */
 
882
function link_target_meta_box($link) { ?>
 
883
<fieldset><legend class="screen-reader-text"><span><?php _e('Target') ?></span></legend>
 
884
<p><label for="link_target_blank" class="selectit">
 
885
<input id="link_target_blank" type="radio" name="link_target" value="_blank" <?php echo ( isset( $link->link_target ) && ($link->link_target == '_blank') ? 'checked="checked"' : ''); ?> />
 
886
<?php _e('<code>_blank</code> &mdash; new window or tab.'); ?></label></p>
 
887
<p><label for="link_target_top" class="selectit">
 
888
<input id="link_target_top" type="radio" name="link_target" value="_top" <?php echo ( isset( $link->link_target ) && ($link->link_target == '_top') ? 'checked="checked"' : ''); ?> />
 
889
<?php _e('<code>_top</code> &mdash; current window or tab, with no frames.'); ?></label></p>
 
890
<p><label for="link_target_none" class="selectit">
 
891
<input id="link_target_none" type="radio" name="link_target" value="" <?php echo ( isset( $link->link_target ) && ($link->link_target == '') ? 'checked="checked"' : ''); ?> />
 
892
<?php _e('<code>_none</code> &mdash; same window or tab.'); ?></label></p>
 
893
</fieldset>
 
894
<p><?php _e('Choose the target frame for your link.'); ?></p>
 
895
<?php
 
896
}
 
897
 
 
898
/**
 
899
 * Display checked checkboxes attribute for xfn microformat options.
 
900
 *
 
901
 * @since 1.0.1
 
902
 *
 
903
 * @param string $class
 
904
 * @param string $value
 
905
 * @param mixed $deprecated Never used.
 
906
 */
 
907
function xfn_check( $class, $value = '', $deprecated = '' ) {
 
908
        global $link;
 
909
 
 
910
        if ( !empty( $deprecated ) )
 
911
                _deprecated_argument( __FUNCTION__, '0.0' ); // Never implemented
 
912
 
 
913
        $link_rel = isset( $link->link_rel ) ? $link->link_rel : ''; // In PHP 5.3: $link_rel = $link->link_rel ?: '';
 
914
        $rels = preg_split('/\s+/', $link_rel);
 
915
 
 
916
        if ('' != $value && in_array($value, $rels) ) {
 
917
                echo ' checked="checked"';
 
918
        }
 
919
 
 
920
        if ('' == $value) {
 
921
                if ('family' == $class && strpos($link_rel, 'child') === false && strpos($link_rel, 'parent') === false && strpos($link_rel, 'sibling') === false && strpos($link_rel, 'spouse') === false && strpos($link_rel, 'kin') === false) echo ' checked="checked"';
 
922
                if ('friendship' == $class && strpos($link_rel, 'friend') === false && strpos($link_rel, 'acquaintance') === false && strpos($link_rel, 'contact') === false) echo ' checked="checked"';
 
923
                if ('geographical' == $class && strpos($link_rel, 'co-resident') === false && strpos($link_rel, 'neighbor') === false) echo ' checked="checked"';
 
924
                if ('identity' == $class && in_array('me', $rels) ) echo ' checked="checked"';
 
925
        }
 
926
}
 
927
 
 
928
/**
 
929
 * Display xfn form fields.
 
930
 *
 
931
 * @since 2.6.0
 
932
 *
 
933
 * @param object $link
 
934
 */
 
935
function link_xfn_meta_box($link) {
 
936
?>
 
937
<table class="links-table">
 
938
        <tr>
 
939
                <th scope="row"><label for="link_rel"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('rel:') ?></label></th>
 
940
                <td><input type="text" name="link_rel" id="link_rel" value="<?php echo ( isset( $link->link_rel ) ? esc_attr($link->link_rel) : ''); ?>" /></td>
 
941
        </tr>
 
942
        <tr>
 
943
                <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('identity') ?></th>
 
944
                <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('identity') ?></span></legend>
 
945
                        <label for="me">
 
946
                        <input type="checkbox" name="identity" value="me" id="me" <?php xfn_check('identity', 'me'); ?> />
 
947
                        <?php _e('another web address of mine') ?></label>
 
948
                </fieldset></td>
 
949
        </tr>
 
950
        <tr>
 
951
                <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friendship') ?></th>
 
952
                <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friendship') ?></span></legend>
 
953
                        <label for="contact">
 
954
                        <input class="valinp" type="radio" name="friendship" value="contact" id="contact" <?php xfn_check('friendship', 'contact'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('contact') ?>
 
955
                        </label>
 
956
                        <label for="acquaintance">
 
957
                        <input class="valinp" type="radio" name="friendship" value="acquaintance" id="acquaintance" <?php xfn_check('friendship', 'acquaintance'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('acquaintance') ?>
 
958
                        </label>
 
959
                        <label for="friend">
 
960
                        <input class="valinp" type="radio" name="friendship" value="friend" id="friend" <?php xfn_check('friendship', 'friend'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friend') ?>
 
961
                        </label>
 
962
                        <label for="friendship">
 
963
                        <input name="friendship" type="radio" class="valinp" value="" id="friendship" <?php xfn_check('friendship'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('none') ?>
 
964
                        </label>
 
965
                </fieldset></td>
 
966
        </tr>
 
967
        <tr>
 
968
                <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('physical') ?> </th>
 
969
                <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('physical') ?></span></legend>
 
970
                        <label for="met">
 
971
                        <input class="valinp" type="checkbox" name="physical" value="met" id="met" <?php xfn_check('physical', 'met'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('met') ?>
 
972
                        </label>
 
973
                </fieldset></td>
 
974
        </tr>
 
975
        <tr>
 
976
                <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('professional') ?> </th>
 
977
                <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('professional') ?></span></legend>
 
978
                        <label for="co-worker">
 
979
                        <input class="valinp" type="checkbox" name="professional" value="co-worker" id="co-worker" <?php xfn_check('professional', 'co-worker'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('co-worker') ?>
 
980
                        </label>
 
981
                        <label for="colleague">
 
982
                        <input class="valinp" type="checkbox" name="professional" value="colleague" id="colleague" <?php xfn_check('professional', 'colleague'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('colleague') ?>
 
983
                        </label>
 
984
                </fieldset></td>
 
985
        </tr>
 
986
        <tr>
 
987
                <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('geographical') ?></th>
 
988
                <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('geographical') ?> </span></legend>
 
989
                        <label for="co-resident">
 
990
                        <input class="valinp" type="radio" name="geographical" value="co-resident" id="co-resident" <?php xfn_check('geographical', 'co-resident'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('co-resident') ?>
 
991
                        </label>
 
992
                        <label for="neighbor">
 
993
                        <input class="valinp" type="radio" name="geographical" value="neighbor" id="neighbor" <?php xfn_check('geographical', 'neighbor'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('neighbor') ?>
 
994
                        </label>
 
995
                        <label for="geographical">
 
996
                        <input class="valinp" type="radio" name="geographical" value="" id="geographical" <?php xfn_check('geographical'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('none') ?>
 
997
                        </label>
 
998
                </fieldset></td>
 
999
        </tr>
 
1000
        <tr>
 
1001
                <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('family') ?></th>
 
1002
                <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('family') ?> </span></legend>
 
1003
                        <label for="child">
 
1004
                        <input class="valinp" type="radio" name="family" value="child" id="child" <?php xfn_check('family', 'child'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('child') ?>
 
1005
                        </label>
 
1006
                        <label for="kin">
 
1007
                        <input class="valinp" type="radio" name="family" value="kin" id="kin" <?php xfn_check('family', 'kin'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('kin') ?>
 
1008
                        </label>
 
1009
                        <label for="parent">
 
1010
                        <input class="valinp" type="radio" name="family" value="parent" id="parent" <?php xfn_check('family', 'parent'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('parent') ?>
 
1011
                        </label>
 
1012
                        <label for="sibling">
 
1013
                        <input class="valinp" type="radio" name="family" value="sibling" id="sibling" <?php xfn_check('family', 'sibling'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('sibling') ?>
 
1014
                        </label>
 
1015
                        <label for="spouse">
 
1016
                        <input class="valinp" type="radio" name="family" value="spouse" id="spouse" <?php xfn_check('family', 'spouse'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('spouse') ?>
 
1017
                        </label>
 
1018
                        <label for="family">
 
1019
                        <input class="valinp" type="radio" name="family" value="" id="family" <?php xfn_check('family'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('none') ?>
 
1020
                        </label>
 
1021
                </fieldset></td>
 
1022
        </tr>
 
1023
        <tr>
 
1024
                <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('romantic') ?></th>
 
1025
                <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('romantic') ?> </span></legend>
 
1026
                        <label for="muse">
 
1027
                        <input class="valinp" type="checkbox" name="romantic" value="muse" id="muse" <?php xfn_check('romantic', 'muse'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('muse') ?>
 
1028
                        </label>
 
1029
                        <label for="crush">
 
1030
                        <input class="valinp" type="checkbox" name="romantic" value="crush" id="crush" <?php xfn_check('romantic', 'crush'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('crush') ?>
 
1031
                        </label>
 
1032
                        <label for="date">
 
1033
                        <input class="valinp" type="checkbox" name="romantic" value="date" id="date" <?php xfn_check('romantic', 'date'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('date') ?>
 
1034
                        </label>
 
1035
                        <label for="romantic">
 
1036
                        <input class="valinp" type="checkbox" name="romantic" value="sweetheart" id="romantic" <?php xfn_check('romantic', 'sweetheart'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('sweetheart') ?>
 
1037
                        </label>
 
1038
                </fieldset></td>
 
1039
        </tr>
 
1040
 
 
1041
</table>
 
1042
<p><?php _e('If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out <a href="http://gmpg.org/xfn/">XFN</a>.'); ?></p>
 
1043
<?php
 
1044
}
 
1045
 
 
1046
/**
 
1047
 * Display advanced link options form fields.
 
1048
 *
 
1049
 * @since 2.6.0
 
1050
 *
 
1051
 * @param object $link
 
1052
 */
 
1053
function link_advanced_meta_box($link) {
 
1054
?>
 
1055
<table class="links-table" cellpadding="0">
 
1056
        <tr>
 
1057
                <th scope="row"><label for="link_image"><?php _e('Image Address') ?></label></th>
 
1058
                <td><input type="text" name="link_image" class="code" id="link_image" maxlength="255" value="<?php echo ( isset( $link->link_image ) ? esc_attr($link->link_image) : ''); ?>" /></td>
 
1059
        </tr>
 
1060
        <tr>
 
1061
                <th scope="row"><label for="rss_uri"><?php _e('RSS Address') ?></label></th>
 
1062
                <td><input name="link_rss" class="code" type="text" id="rss_uri" maxlength="255" value="<?php echo ( isset( $link->link_rss ) ? esc_attr($link->link_rss) : ''); ?>" /></td>
 
1063
        </tr>
 
1064
        <tr>
 
1065
                <th scope="row"><label for="link_notes"><?php _e('Notes') ?></label></th>
 
1066
                <td><textarea name="link_notes" id="link_notes" rows="10"><?php echo ( isset( $link->link_notes ) ? $link->link_notes : ''); // textarea_escaped ?></textarea></td>
 
1067
        </tr>
 
1068
        <tr>
 
1069
                <th scope="row"><label for="link_rating"><?php _e('Rating') ?></label></th>
 
1070
                <td><select name="link_rating" id="link_rating" size="1">
 
1071
                <?php
 
1072
                        for ( $r = 0; $r <= 10; $r++ ) {
 
1073
                                echo '<option value="' . $r . '"';
 
1074
                                if ( isset($link->link_rating) && $link->link_rating == $r )
 
1075
                                        echo ' selected="selected"';
 
1076
                                echo('>' . $r . '</option>');
 
1077
                        }
 
1078
                ?></select>&nbsp;<?php _e('(Leave at 0 for no rating.)') ?>
 
1079
                </td>
 
1080
        </tr>
 
1081
</table>
 
1082
<?php
 
1083
}
 
1084
 
 
1085
/**
 
1086
 * Display post thumbnail meta box.
 
1087
 *
 
1088
 * @since 2.9.0
 
1089
 */
 
1090
function post_thumbnail_meta_box( $post ) {
 
1091
        $thumbnail_id = get_post_meta( $post->ID, '_thumbnail_id', true );
 
1092
        echo _wp_post_thumbnail_html( $thumbnail_id, $post->ID );
 
1093
}
 
1094
 
 
1095
/**
 
1096
 * Display fields for ID3 data
 
1097
 *
 
1098
 * @since 3.9.0
 
1099
 *
 
1100
 * @param WP_Post $post
 
1101
 */
 
1102
function attachment_id3_data_meta_box( $post ) {
 
1103
        $meta = array();
 
1104
        if ( ! empty( $post->ID ) ) {
 
1105
                $meta = wp_get_attachment_metadata( $post->ID );
 
1106
        }
 
1107
 
 
1108
        foreach ( wp_get_attachment_id3_keys( $post, 'edit' ) as $key => $label ) : ?>
 
1109
        <p>
 
1110
                <label for="title"><?php echo $label ?></label><br />
 
1111
                <input type="text" name="id3_<?php echo esc_attr( $key ) ?>" id="id3_<?php echo esc_attr( $key ) ?>" class="large-text" value="<?php
 
1112
                        if ( ! empty( $meta[ $key ] ) ) {
 
1113
                                echo esc_attr( $meta[ $key ] );
 
1114
                        }
 
1115
                ?>" />
 
1116
        </p>
 
1117
        <?php
 
1118
        endforeach;
 
1119
}