assets
3 weeks ago
theme-hooks
4 years ago
views
1 year ago
activator.php
2 years ago
cpt-api.php
4 years ago
cpt-hooks.php
2 years ago
cpt.php
1 year ago
init.php
3 weeks ago
cpt-api.php
118 lines
| 1 | <?php |
| 2 | namespace ElementsKit_Lite; |
| 3 | |
| 4 | defined( 'ABSPATH' ) || exit; |
| 5 | |
| 6 | class ElementsKit_HeaderFooterBuilder_Api extends Core\Handler_Api { |
| 7 | |
| 8 | public function config() { |
| 9 | $this->prefix = 'my-template'; |
| 10 | $this->param = '/(?P<id>\w+)/'; |
| 11 | } |
| 12 | |
| 13 | public function get_update() { |
| 14 | |
| 15 | if ( ! current_user_can( 'manage_options' ) ) { |
| 16 | return; |
| 17 | } |
| 18 | |
| 19 | $id = $this->request['id']; |
| 20 | $open_editor = $this->request['open_editor']; |
| 21 | |
| 22 | $title = ( $this->request['title'] == '' ) ? ( 'ElementsKit_Lite Template #' . time() ) : $this->request['title']; |
| 23 | $activation = $this->request['activation']; |
| 24 | $type = $this->request['type']; |
| 25 | $condition_a = ( $type == 'section' ) ? '' : $this->request['condition_a']; |
| 26 | $condition_singular = ( $type == 'section' ) ? '' : $this->request['condition_singular']; |
| 27 | $condition_singular_id = ( $type == 'section' ) ? '' : ( is_array( $this->request['condition_singular_id'] ) ? implode( ',', $this->request['condition_singular_id'] ) : $this->request['condition_singular_id'] ); |
| 28 | |
| 29 | $post_data = array( |
| 30 | 'post_title' => $title, |
| 31 | 'post_status' => 'publish', |
| 32 | 'post_type' => 'elementskit_template', |
| 33 | ); |
| 34 | |
| 35 | $post = get_post( $id ); |
| 36 | |
| 37 | if ( $post == null ) { |
| 38 | // $post_data['post_author'] = $this->request['post_author']; |
| 39 | $id = wp_insert_post( $post_data ); |
| 40 | } else { |
| 41 | $post_data['ID'] = $id; |
| 42 | wp_update_post( $post_data ); |
| 43 | } |
| 44 | |
| 45 | update_post_meta( $id, '_wp_page_template', 'elementor_canvas' ); |
| 46 | update_post_meta( $id, 'elementskit_template_activation', $activation ); |
| 47 | update_post_meta( $id, 'elementskit_template_type', $type ); |
| 48 | update_post_meta( $id, 'elementskit_template_condition_a', $condition_a ); |
| 49 | update_post_meta( $id, 'elementskit_template_condition_singular', $condition_singular ); |
| 50 | update_post_meta( $id, 'elementskit_template_condition_singular_id', $condition_singular_id ); |
| 51 | |
| 52 | // if wpml is active and wpml not set for this post |
| 53 | if ( defined( 'ICL_SITEPRESS_VERSION' ) ) { |
| 54 | global $sitepress; |
| 55 | $wpml_element_type = apply_filters( 'wpml_element_type', 'elementskit_template' ); |
| 56 | $sitepress->set_element_language_details( $id, $wpml_element_type, false, $sitepress->get_current_language(), null, false ); |
| 57 | } |
| 58 | |
| 59 | if ( $open_editor == 'true' ) { |
| 60 | $url = get_admin_url() . '/post.php?post=' . $id . '&action=elementor'; |
| 61 | wp_safe_redirect( $url ); |
| 62 | exit; |
| 63 | } else { |
| 64 | $cond = ucwords( |
| 65 | str_replace( |
| 66 | '_', |
| 67 | ' ', |
| 68 | $condition_a |
| 69 | . ( ( $condition_a == 'singular' ) |
| 70 | ? ( ( $condition_singular != '' ) |
| 71 | ? ( ' > ' . $condition_singular |
| 72 | . ( ( $condition_singular_id != '' ) |
| 73 | ? ' > ' . $condition_singular_id |
| 74 | : '' ) ) |
| 75 | : '' ) |
| 76 | : '' ) |
| 77 | ) |
| 78 | ); |
| 79 | |
| 80 | return array( |
| 81 | 'saved' => true, |
| 82 | 'data' => array( |
| 83 | 'id' => $id, |
| 84 | 'title' => $title, |
| 85 | 'type' => $type, |
| 86 | 'activation' => $activation, |
| 87 | 'cond_text' => $cond, |
| 88 | 'type_html' => ( ucfirst( $type ) . ( ( $activation == 'yes' ) |
| 89 | ? ( '<span class="ekit-headerfooter-status ekit-headerfooter-status-active">' . esc_html__( 'Active', 'elementskit-lite' ) . '</span>' ) |
| 90 | : ( '<span class="ekit-headerfooter-status ekit-headerfooter-status-inactive">' . esc_html__( 'Inactive', 'elementskit-lite' ) . '</span>' ) ) ), |
| 91 | ), |
| 92 | ); |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | public function get_get() { |
| 97 | if ( ! current_user_can( 'manage_options' ) ) { |
| 98 | return; |
| 99 | } |
| 100 | $id = $this->request['id']; |
| 101 | $post = get_post( $id ); |
| 102 | if ( $post != null ) { |
| 103 | return array( |
| 104 | 'title' => $post->post_title, |
| 105 | 'status' => $post->post_status, |
| 106 | 'activation' => get_post_meta( $post->ID, 'elementskit_template_activation', true ), |
| 107 | 'type' => get_post_meta( $post->ID, 'elementskit_template_type', true ), |
| 108 | 'condition_a' => get_post_meta( $post->ID, 'elementskit_template_condition_a', true ), |
| 109 | 'condition_singular' => get_post_meta( $post->ID, 'elementskit_template_condition_singular', true ), |
| 110 | 'condition_singular_id' => get_post_meta( $post->ID, 'elementskit_template_condition_singular_id', true ), |
| 111 | ); |
| 112 | } |
| 113 | return true; |
| 114 | } |
| 115 | |
| 116 | } |
| 117 | new ElementsKit_HeaderFooterBuilder_Api(); |
| 118 |