| Current Path : /home/smartbloks/.trash/eazydocs/includes/Admin/ |
| Current File : /home/smartbloks/.trash/eazydocs/includes/Admin/Create_Post.php |
<?php
namespace eazyDocs\Admin;
use ElementorPro\Modules\DynamicTags\Tags\Post_ID;
/**
* Class Create_Post
* @package eazyDocs\Admin
*/
class Create_Post {
/**
* Create_Post constructor.
*/
public function __construct() {
add_action( 'admin_init', [ $this, 'create_parent_doc' ] );
add_action( 'admin_init', [ $this, 'create_new_doc' ] );
add_action( 'admin_init', [ $this, 'create_section_doc' ] );
add_action( 'admin_init', [ $this, 'create_child_doc' ] );
}
/**
* Create parent Doc post
*/
public function create_parent_doc() {
if ( ! empty ( $_GET['parent_title'] ) && ! empty ( $_GET['Create_doc'] == 'yes' ) ) {
$title = !empty($_GET['parent_title']) ? htmlspecialchars($_GET['parent_title']) : 0;
$str = ['ezd_ampersand','ezd_hash', 'ezd_plus'];
$rplc = ['&','#', '+'];
$title_text = str_replace($str, $rplc, $title);
$args = [
'post_type' => 'docs',
'post_parent' => 0
];
$query = new \WP_Query( $args );
$total = $query->found_posts;
$add = 2;
$order = $total + $add;
// Create post object
$parent_doc = array(
'post_title' => $title_text,
'post_parent' => 0,
'post_content' => '',
'post_type' => 'docs',
'post_status' => 'publish',
'post_author' => get_current_user_id(),
'menu_order' => $order,
);
wp_insert_post( $parent_doc, $wp_error = '' );
wp_safe_redirect( admin_url('admin.php?page=eazydocs') );
}
}
/**
* Create new Doc post
*/
public function create_new_doc() {
if ( ! empty ( $_GET['new_doc'] ) && ! empty ( $_GET['Create_doc'] == 'yes') ) {
$doc_title = ! empty ( $_GET['new_doc'] ) ? htmlspecialchars( $_GET['new_doc'] ) : 0;
$str = ['ezd_ampersand','ezd_hash', 'ezd_plus'];
$rplc = ['&','#', '+'];
$doc_title_text = str_replace($str, $rplc, $doc_title);
// Create post object
$new_doc = array(
'post_title' => $doc_title_text,
'post_parent' => 0,
'post_content' => '',
'post_type' => 'docs',
'post_status' => 'publish',
'menu_order' => 1
);
wp_insert_post( $new_doc, $wp_error = '' );
wp_safe_redirect( admin_url('admin.php?page=eazydocs') );
}
}
/**
* Create section doc post
*/
public function create_section_doc() {
if ( ! empty ( $_GET['is_section'] ) && ! empty ( $_GET['Create_Section'] == 'yes' )) {
$parentID = ! empty ( $_GET['parentID'] ) ? absint( $_GET['parentID'] ) : 0;
$section_title = ! empty ( $_GET['is_section'] ) ? htmlspecialchars( $_GET['is_section'] ) : '';
$section_slug = str_replace(' ', '-', $section_title);
$str = ['ezd_ampersand','ezd_hash', 'ezd_plus'];
$rplc = ['&','#', '+'];
$section_title_text = str_replace($str, $rplc, $section_title);
$parent_item = get_children( array(
'post_parent' => $parentID,
'post_type' => 'docs'
) );
$sec_post_status ='publish';
if( ezd_is_premium() ){
$sec_post_status = get_post_status($parentID);
}
$add = 2;
$order = count( $parent_item );
$order = $order + $add;
// Create post object
$section_doc = array(
'post_title' => $section_title_text,
'post_name' => $section_slug,
'post_parent' => $parentID,
'post_content' => '',
'post_type' => 'docs',
'post_status' => $sec_post_status,
'menu_order' => $order
);
$section_doc_id = wp_insert_post( $section_doc );
if ($section_doc_id && !is_wp_error($section_doc_id)) {
wp_update_post([
'ID' => $section_doc_id,
'post_name' => $section_slug .'-'. $section_doc_id
]);
}
wp_safe_redirect( admin_url('admin.php?page=eazydocs') );
}
}
/**
* Create child doc post
*/
public function create_child_doc() {
if ( ! empty ( $_GET['child'] ) && ! empty ( $_GET['Create_Child'] == 'yes' ) ) {
$child_id = ! empty ( $_GET['childID'] ) ? absint( $_GET['childID'] ) : 0;
$child_title = ! empty ( $_GET['child'] ) ? htmlspecialchars( $_GET['child'] ) : '';
$child_slug = str_replace(' ', '-', $child_title);
$str = ['ezd_ampersand','ezd_hash', 'ezd_plus'];
$rplc = ['&','#', '+'];
$child_title_text = str_replace($str, $rplc, $child_title);
$child_item = get_children( array(
'post_parent' => $child_id,
'post_type' => 'docs'
) );
$add = 2;
$order = count( $child_item );
$order = $order + $add;
$child_post_status ='publish';
if( ezd_is_premium() ){
$child_post_status = get_post_status($child_id);
}
// Create post object
$child_doc = array(
'post_title' => $child_title_text,
'post_parent' => $child_id,
'post_name' => $child_slug,
'post_content' => '',
'post_type' => 'docs',
'post_status' => $child_post_status,
'menu_order' => $order
);
$child_doc_id = wp_insert_post( $child_doc );
if ($child_doc_id && !is_wp_error($child_doc_id)) {
wp_update_post([
'ID' => $child_doc_id,
'post_name' => $child_slug .'-'. $child_doc_id
]);
}
wp_safe_redirect( admin_url('admin.php?page=eazydocs') );
}
}
}