aboutsummaryrefslogtreecommitdiff
path: root/srcs/wordpress/wp-admin/term.php
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-01-07 13:06:14 +0100
committerCharles <sircharlesaze@gmail.com>2020-01-07 13:06:14 +0100
commit7086111ad4dd997e12a3220e1ee60c9b9bcf0bb8 (patch)
treef7453d7dd5cbaaab246e23810b02d3edf1e451be /srcs/wordpress/wp-admin/term.php
parentc59bdcf77c50cbe89b4a93782cdd6d9e7532080e (diff)
downloadft_server-7086111ad4dd997e12a3220e1ee60c9b9bcf0bb8.tar.gz
ft_server-7086111ad4dd997e12a3220e1ee60c9b9bcf0bb8.tar.bz2
ft_server-7086111ad4dd997e12a3220e1ee60c9b9bcf0bb8.zip
Added wordpress
Diffstat (limited to 'srcs/wordpress/wp-admin/term.php')
-rw-r--r--srcs/wordpress/wp-admin/term.php75
1 files changed, 75 insertions, 0 deletions
diff --git a/srcs/wordpress/wp-admin/term.php b/srcs/wordpress/wp-admin/term.php
new file mode 100644
index 0000000..4893220
--- /dev/null
+++ b/srcs/wordpress/wp-admin/term.php
@@ -0,0 +1,75 @@
+<?php
+/**
+ * Edit Term Administration Screen.
+ *
+ * @package WordPress
+ * @subpackage Administration
+ * @since 4.5.0
+ */
+
+/** WordPress Administration Bootstrap */
+require_once( dirname( __FILE__ ) . '/admin.php' );
+
+if ( empty( $_REQUEST['tag_ID'] ) ) {
+ $sendback = admin_url( 'edit-tags.php' );
+ if ( ! empty( $taxnow ) ) {
+ $sendback = add_query_arg( array( 'taxonomy' => $taxnow ), $sendback );
+ }
+
+ if ( 'post' !== get_current_screen()->post_type ) {
+ $sendback = add_query_arg( 'post_type', get_current_screen()->post_type, $sendback );
+ }
+
+ wp_redirect( esc_url_raw( $sendback ) );
+ exit;
+}
+
+$tag_ID = absint( $_REQUEST['tag_ID'] );
+$tag = get_term( $tag_ID, $taxnow, OBJECT, 'edit' );
+
+if ( ! $tag instanceof WP_Term ) {
+ wp_die( __( 'You attempted to edit an item that doesn&#8217;t exist. Perhaps it was deleted?' ) );
+}
+
+$tax = get_taxonomy( $tag->taxonomy );
+$taxonomy = $tax->name;
+$title = $tax->labels->edit_item;
+
+if ( ! in_array( $taxonomy, get_taxonomies( array( 'show_ui' => true ) ) ) ||
+ ! current_user_can( 'edit_term', $tag->term_id ) ) {
+
+ wp_die(
+ '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' .
+ '<p>' . __( 'Sorry, you are not allowed to edit this item.' ) . '</p>',
+ 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 );
+}
+
+if ( 'post' != $post_type ) {
+ $parent_file = ( 'attachment' == $post_type ) ? 'upload.php' : "edit.php?post_type=$post_type";
+ $submenu_file = "edit-tags.php?taxonomy=$taxonomy&amp;post_type=$post_type";
+} elseif ( 'link_category' == $taxonomy ) {
+ $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";
+}
+
+get_current_screen()->set_screen_reader_content(
+ array(
+ 'heading_pagination' => $tax->labels->items_list_navigation,
+ 'heading_list' => $tax->labels->items_list,
+ )
+);
+wp_enqueue_script( 'admin-tags' );
+require_once( ABSPATH . 'wp-admin/admin-header.php' );
+include( ABSPATH . 'wp-admin/edit-tag-form.php' );
+include( ABSPATH . 'wp-admin/admin-footer.php' );