Custom_JS.php
5 years ago
Post_Duplicator.php
4 years ago
Promotion.php
4 years ago
Reading_Progress.php
4 years ago
Scroll_to_Top.php
4 years ago
Table_of_Content.php
4 years ago
Post_Duplicator.php
139 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Essential_Addons_Elementor\Extensions; |
| 4 | |
| 5 | if ( ! defined( 'ABSPATH' ) ) { |
| 6 | exit; |
| 7 | } |
| 8 | |
| 9 | class Post_Duplicator { |
| 10 | public function __construct() { |
| 11 | |
| 12 | add_filter( 'admin_action_eae_duplicate', array( $this, 'duplicate' ) ); |
| 13 | add_action( 'admin_bar_menu', array( $this, 'admin_bar_menu' ), 10000 ); |
| 14 | add_filter( 'post_row_actions', array( $this, 'row_actions' ), 10, 2 ); |
| 15 | add_filter( 'page_row_actions', array( $this, 'row_actions' ), 10, 2 ); |
| 16 | |
| 17 | } |
| 18 | |
| 19 | public function admin_bar_menu( $wp_admin_bar ) { |
| 20 | |
| 21 | global $pagenow; |
| 22 | global $post; |
| 23 | |
| 24 | $enabled_on = get_option( 'eael_save_post_duplicator_post_type', 'all' ); |
| 25 | |
| 26 | if ( ! is_admin() || $pagenow !== 'post.php' || ( $enabled_on != 'all' || $post->post_type != $enabled_on ) ) { |
| 27 | return; |
| 28 | } |
| 29 | |
| 30 | $duplicate_url = admin_url( 'admin.php?action=eae_duplicate&post=' . $post->ID ); |
| 31 | $duplicate_url = wp_nonce_url( $duplicate_url, 'ea_duplicator' ); |
| 32 | $wp_admin_bar->add_menu( |
| 33 | array( |
| 34 | 'id' => 'eae-duplicator', |
| 35 | 'title' => __( 'EA Duplicator', 'essential-addons-for-elementor-lite' ), |
| 36 | 'href' => $duplicate_url |
| 37 | ) |
| 38 | ); |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * EA Duplicator Button added in table row |
| 43 | * |
| 44 | * @param array $actions |
| 45 | * @param WP_Post $post |
| 46 | * |
| 47 | * @return array |
| 48 | */ |
| 49 | public function row_actions( $actions, $post ) { |
| 50 | |
| 51 | $enabled_on = get_option( 'eael_save_post_duplicator_post_type', 'all' ); |
| 52 | |
| 53 | if ( current_user_can( 'edit_posts' ) && ( $enabled_on == 'all' || $post->post_type == $enabled_on ) ) { |
| 54 | $duplicate_url = admin_url( 'admin.php?action=eae_duplicate&post=' . $post->ID ); |
| 55 | $duplicate_url = wp_nonce_url( $duplicate_url, 'ea_duplicator' ); |
| 56 | $actions['eae_duplicate'] = sprintf( '<a href="%s" title="%s">%s</a>', $duplicate_url, __( 'Duplicate ' . esc_attr( $post->post_title ), 'essential-addons-for-elementor-lite' ), __( 'EA Duplicator', 'essential-addons-for-elementor-lite' ) ); |
| 57 | } |
| 58 | |
| 59 | return $actions; |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Duplicate a post |
| 64 | * @return void |
| 65 | */ |
| 66 | public function duplicate() { |
| 67 | |
| 68 | $nonce = isset( $_REQUEST['_wpnonce'] ) && ! empty( $_REQUEST['_wpnonce'] ) ? $_REQUEST['_wpnonce'] : null; |
| 69 | $post_id = isset( $_REQUEST['post'] ) && ! empty( $_REQUEST['post'] ) ? intval( $_REQUEST['post'] ) : null; |
| 70 | $action = isset( $_REQUEST['action'] ) && ! empty( $_REQUEST['action'] ) ? trim( sanitize_text_field( $_REQUEST['action'] ) ) : null; |
| 71 | |
| 72 | if ( is_null( $nonce ) || is_null( $post_id ) || $action !== 'eae_duplicate' ) { |
| 73 | return; // Return if action is not eae_duplicate |
| 74 | } |
| 75 | |
| 76 | if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'ea_duplicator' ) ) { |
| 77 | return; // Return if nonce is not valid |
| 78 | } |
| 79 | |
| 80 | $post = sanitize_post( get_post( $post_id ), 'db' ); |
| 81 | |
| 82 | if ( is_null( $post ) ) { |
| 83 | return; // Return if post is not there. |
| 84 | } |
| 85 | |
| 86 | $current_user = wp_get_current_user(); |
| 87 | $duplicate_post_args = array( |
| 88 | 'post_author' => $current_user->ID, |
| 89 | 'post_title' => $post->post_title, |
| 90 | 'post_content' => $post->post_content, |
| 91 | 'post_excerpt' => $post->post_excerpt, |
| 92 | 'post_parent' => $post->post_parent, |
| 93 | 'post_status' => 'draft', |
| 94 | 'ping_status' => $post->ping_status, |
| 95 | 'comment_status' => $post->comment_status, |
| 96 | 'post_password' => $post->post_password, |
| 97 | 'post_type' => $post->post_type, |
| 98 | 'to_ping' => $post->to_ping, |
| 99 | 'menu_order' => $post->menu_order, |
| 100 | ); |
| 101 | $duplicated_id = wp_insert_post( $duplicate_post_args ); |
| 102 | |
| 103 | if ( ! is_wp_error( $duplicated_id ) ) { |
| 104 | $taxonomies = get_object_taxonomies( $post->post_type ); |
| 105 | if ( ! empty( $taxonomies ) && is_array( $taxonomies ) ) { |
| 106 | foreach ( $taxonomies as $taxonomy ) { |
| 107 | $post_terms = wp_get_object_terms( $post_id, $taxonomy, array( 'fields' => 'slugs' ) ); |
| 108 | wp_set_object_terms( $duplicated_id, $post_terms, $taxonomy, false ); |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | global $wpdb; |
| 113 | $post_meta = $wpdb->get_results( $wpdb->prepare( "SELECT meta_key, meta_value FROM $wpdb->postmeta WHERE post_id = %d", $post_id ) ); |
| 114 | |
| 115 | if ( ! empty( $post_meta ) && is_array( $post_meta ) ) { |
| 116 | |
| 117 | $duplicate_insert_query = "INSERT INTO $wpdb->postmeta ( post_id, meta_key, meta_value ) VALUES "; |
| 118 | $insert = ''; |
| 119 | |
| 120 | foreach ( $post_meta as $meta_info ) { |
| 121 | |
| 122 | $meta_key = sanitize_text_field( $meta_info->meta_key ); |
| 123 | $meta_value = $meta_info->meta_value; |
| 124 | |
| 125 | if ( ! empty( $insert ) ) { |
| 126 | $insert .= ', '; |
| 127 | } |
| 128 | |
| 129 | $insert .= $wpdb->prepare( '(%d, %s, %s)', $duplicated_id, $meta_key, $meta_value ); |
| 130 | } |
| 131 | |
| 132 | $wpdb->query( $duplicate_insert_query . $insert ); |
| 133 | } |
| 134 | } |
| 135 | $redirect_url = admin_url( 'edit.php?post_type=' . $post->post_type ); |
| 136 | wp_safe_redirect( $redirect_url ); |
| 137 | } |
| 138 | } |
| 139 |