2016-01-15 09:27:27 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Edit Term Administration Screen.
|
|
|
|
*
|
2016-02-07 03:43:26 +01:00
|
|
|
* @package WordPress
|
2016-01-15 09:27:27 +01:00
|
|
|
* @subpackage Administration
|
2016-02-07 03:43:26 +01:00
|
|
|
* @since 4.5.0
|
2016-01-15 09:27:27 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** WordPress Administration Bootstrap */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once __DIR__ . '/admin.php';
|
2016-01-15 09:27:27 +01:00
|
|
|
|
2016-03-07 13:56:28 +01:00
|
|
|
if ( empty( $_REQUEST['tag_ID'] ) ) {
|
2016-01-15 09:27:27 +01:00
|
|
|
$sendback = admin_url( 'edit-tags.php' );
|
|
|
|
if ( ! empty( $taxnow ) ) {
|
|
|
|
$sendback = add_query_arg( array( 'taxonomy' => $taxnow ), $sendback );
|
|
|
|
}
|
2019-09-23 21:10:58 +02:00
|
|
|
|
|
|
|
if ( 'post' !== get_current_screen()->post_type ) {
|
|
|
|
$sendback = add_query_arg( 'post_type', get_current_screen()->post_type, $sendback );
|
|
|
|
}
|
|
|
|
|
2022-06-01 20:14:10 +02:00
|
|
|
wp_redirect( sanitize_url( $sendback ) );
|
2016-01-15 09:27:27 +01:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2016-03-11 09:52:29 +01:00
|
|
|
$tag_ID = absint( $_REQUEST['tag_ID'] );
|
2016-07-16 20:37:30 +02:00
|
|
|
$tag = get_term( $tag_ID, $taxnow, OBJECT, 'edit' );
|
2016-01-15 09:27:27 +01:00
|
|
|
|
|
|
|
if ( ! $tag instanceof WP_Term ) {
|
Administration: Replace contracted verb forms for better consistency.
This changeset replaces contracted verb forms like `doesn't`, `can't`, or `isn't` with non-contracted forms like `does not`, `cannot`, or `is not`, for better consistency across the WordPress administration. It also updates some corresponding unit tests strings.
Props Presskopp, socalchristina, aandrewdixon, francina, SergeyBiryukov, JeffPaul, audrasjb, hellofromTonya.
Fixes #38913.
See #39176.
Built from https://develop.svn.wordpress.org/trunk@52978
git-svn-id: http://core.svn.wordpress.org/trunk@52567 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-22 17:25:03 +01:00
|
|
|
wp_die( __( 'You attempted to edit an item that does not exist. Perhaps it was deleted?' ) );
|
2016-01-15 09:27:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$tax = get_taxonomy( $tag->taxonomy );
|
|
|
|
$taxonomy = $tax->name;
|
|
|
|
$title = $tax->labels->edit_item;
|
|
|
|
|
2020-04-05 05:02:11 +02:00
|
|
|
if ( ! in_array( $taxonomy, get_taxonomies( array( 'show_ui' => true ) ), true )
|
|
|
|
|| ! current_user_can( 'edit_term', $tag->term_id )
|
|
|
|
) {
|
2016-01-15 09:27:27 +01:00
|
|
|
wp_die(
|
2018-02-19 03:13:32 +01:00
|
|
|
'<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' .
|
Taxonomy: Introduce more fine grained capabilities for managing taxonomy terms.
This introduces the singular `edit_term`, `delete_term`, and `assign_term` meta capabilities for terms, and switches the base capability name for tags from `manage_categories` to `manage_post_tags` and the corresponding `edit_post_tags`, `delete_post_tags`, and `assign_post_tags`.
All of these capabilities ultimately map to `manage_categories` so by default there is no change in the behaviour of the capabilities for categories, tags, or custom taxonomies. The `map_meta_cap` filter and the `capabilities` argument when registering a taxonomy now allow for control over editing, deleting, and assigning individual terms, as well as a separation of capabilities for tags from those of categories.
Fixes #35614
Props johnjamesjacoby for feedback
Built from https://develop.svn.wordpress.org/trunk@38698
git-svn-id: http://core.svn.wordpress.org/trunk@38641 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-01 00:40:28 +02:00
|
|
|
'<p>' . __( 'Sorry, you are not allowed to edit this item.' ) . '</p>',
|
2016-01-15 09:27:27 +01:00
|
|
|
403
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$post_type = get_current_screen()->post_type;
|
|
|
|
|
|
|
|
// Default to the first object_type associated with the taxonomy if no post type was passed.
|
|
|
|
if ( empty( $post_type ) ) {
|
|
|
|
$post_type = reset( $tax->object_type );
|
|
|
|
}
|
|
|
|
|
2019-12-15 10:45:01 +01:00
|
|
|
if ( 'post' !== $post_type ) {
|
|
|
|
$parent_file = ( 'attachment' === $post_type ) ? 'upload.php' : "edit.php?post_type=$post_type";
|
2016-01-15 09:27:27 +01:00
|
|
|
$submenu_file = "edit-tags.php?taxonomy=$taxonomy&post_type=$post_type";
|
2019-12-15 10:45:01 +01:00
|
|
|
} elseif ( 'link_category' === $taxonomy ) {
|
2016-01-15 09:27:27 +01:00
|
|
|
$parent_file = 'link-manager.php';
|
|
|
|
$submenu_file = 'edit-tags.php?taxonomy=link_category';
|
|
|
|
} else {
|
|
|
|
$parent_file = 'edit.php';
|
|
|
|
$submenu_file = "edit-tags.php?taxonomy=$taxonomy";
|
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
get_current_screen()->set_screen_reader_content(
|
|
|
|
array(
|
|
|
|
'heading_pagination' => $tax->labels->items_list_navigation,
|
|
|
|
'heading_list' => $tax->labels->items_list,
|
|
|
|
)
|
|
|
|
);
|
2017-05-12 21:26:41 +02:00
|
|
|
wp_enqueue_script( 'admin-tags' );
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . 'wp-admin/admin-header.php';
|
|
|
|
require ABSPATH . 'wp-admin/edit-tag-form.php';
|
|
|
|
require_once ABSPATH . 'wp-admin/admin-footer.php';
|