set_vars( $config ); $this->init(); } /** * Set variables based on configuration * @param $config Configuration parameters */ public function set_vars( $config ) { if ( isset( $config['page_slug'] ) ) { $this->page_slug = esc_attr( $config['page_slug'] ); } if ( isset( $config['page_title'] ) ) { $this->page_title = esc_attr( $config['page_title'] ); } if ( isset( $config['steps'] ) ) { $this->config_steps = $config['steps']; } $current_theme = wp_get_theme(); $this->theme_title = $current_theme->get( 'Name' ); $this->theme_name = strtolower( preg_replace( '#[^a-zA-Z]#', '', $current_theme->get( 'Name' ) ) ); $this->page_slug = apply_filters( $this->theme_name . '_theme_setup_wizard_page_slug', $this->theme_name . '-wizard' ); $this->parent_slug = apply_filters( $this->theme_name . '_theme_setup_wizard_parent_slug', '' ); } /*** Initialize hooks and actions ***/ public function init() { add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); add_action( 'admin_menu', array( $this, 'menu_page' ) ); add_action( 'wp_ajax_setup_widgets', array( $this, 'setup_widgets' ) ); } public function enqueue_scripts() { wp_enqueue_style( 'theme-wizard-style', get_template_directory_uri() . '/theme-wizard/assets/css/theme-wizard-style.css'); wp_register_script( 'theme-wizard-script', get_template_directory_uri() . '/theme-wizard/assets/js/theme-wizard-script.js', array( 'jquery' )); wp_localize_script( 'theme-wizard-script', 'appointment_management_whizzie_params', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ), 'verify_text' => esc_html( 'verifying', 'appointment-management' ) ) ); wp_enqueue_script( 'theme-wizard-script' ); } public function menu_page() { add_theme_page( esc_html( $this->page_title ), esc_html( $this->page_title ), 'manage_options', $this->page_slug, array( $this, 'appointment_management_setup_wizard' ) ); } /*** Display the wizard page content ***/ public function wizard_page() { ?>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry standard dummy text ever since the 1500, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960 with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
', 'post_status' => 'publish', 'post_author' => 1, 'post_name' => 'doctor' // Unique slug for the Doctor page ); wp_insert_post($appointment_management_doctor); } // Create a Services page and assign the template $appointment_management_service_title = 'Service'; $appointment_management_service_check = get_page_by_path('service'); if (!$appointment_management_service_check) { $appointment_management_service = array( 'post_type' => 'page', 'post_title' => $appointment_management_service_title, 'post_content' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry standard dummy text ever since the 1500, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960 with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
', 'post_status' => 'publish', 'post_author' => 1, 'post_name' => 'service' // Unique slug for the Services page ); wp_insert_post($appointment_management_service); } // Create a Contact page and assign the template $appointment_management_contact_title = 'Contact'; $appointment_management_contact_check = get_page_by_path('contact'); if (!$appointment_management_contact_check) { $appointment_management_contact = array( 'post_type' => 'page', 'post_title' => $appointment_management_contact_title, 'post_content' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry standard dummy text ever since the 1500, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960 with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
', 'post_status' => 'publish', 'post_author' => 1, 'post_name' => 'contact' // Unique slug for the Contact page ); wp_insert_post($appointment_management_contact); } /*----------------------------------------- Header Button --------------------------------------------------*/ set_theme_mod( 'appointment_management_enable_header_search_section', true); set_theme_mod( 'appointment_management_header_button_label_','Book Appointment'); set_theme_mod( 'appointment_management_header_button_link_','#'); // ------------------------------------------ Blogs for Sections -------------------------------------- // Create categories if not already created $appointment_management_category_slider = wp_create_category('Slider'); $appointment_management_category_services = wp_create_category('Services'); // Array of categories to assign to each set of posts $appointment_management_categories = array($appointment_management_category_slider, $appointment_management_category_services); // Array of image URLs for the "Services" category $services_images = array( get_template_directory_uri() . '/resource/img/service1.png', get_template_directory_uri() . '/resource/img/service2.png', get_template_directory_uri() . '/resource/img/service3.png', ); // Loop to create posts for ($i = 1; $i <= 7; $i++) { // 7 posts (3 for Slider, 4 for Blog) $titles = [ 'Your Health, Just a Click Away', 'Book Appointments Anytime, Anywhere', 'Trusted Care at Your Fingertips', 'Dental', 'Cardiology', 'Neurologist', 'Traumatology' ]; $content = 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.'; // Determine category index (first 3 posts for Slider, next 4 for Blog) $category_index = ($i <= 3) ? 0 : 1; // Assign post title $post_title = $titles[$i - 1]; // Create post object $my_post = [ 'post_title' => wp_strip_all_tags($post_title), 'post_content' => $content, 'post_status' => 'publish', 'post_type' => 'post', 'post_category' => [$appointment_management_categories[$category_index]], ]; // Insert post $post_id = wp_insert_post($my_post); // Set image URLs if ($category_index === 0) { // Slider category (first 3 posts) $slider_images = [ get_template_directory_uri() . '/resource/img/slider1.png', get_template_directory_uri() . '/resource/img/slider2.png', get_template_directory_uri() . '/resource/img/slider3.png', ]; $appointment_management_image_url = $slider_images[$i - 1]; // i = 1 to 3 } else { // Services category (next 4 posts) $services_image_index = $i - 4; // i = 4 to 7 → index 0 to 3 if (isset($services_images[$services_image_index])) { $appointment_management_image_url = $services_images[$services_image_index]; } else { $appointment_management_image_url = get_template_directory_uri() . '/resource/img/default.png'; } } $appointment_management_image_name = basename($appointment_management_image_url); $appointment_management_upload_dir = wp_upload_dir(); $appointment_management_image_data = file_get_contents($appointment_management_image_url); $appointment_management_unique_file_name = wp_unique_filename($appointment_management_upload_dir['path'], $appointment_management_image_name); $filename = basename($appointment_management_unique_file_name); if (wp_mkdir_p($appointment_management_upload_dir['path'])) { $file = $appointment_management_upload_dir['path'] . '/' . $filename; } else { $file = $appointment_management_upload_dir['basedir'] . '/' . $filename; } if (!function_exists('WP_Filesystem')) { require_once ABSPATH . 'wp-admin/includes/file.php'; } WP_Filesystem(); global $wp_filesystem; if (!$wp_filesystem->put_contents($file, $appointment_management_image_data, FS_CHMOD_FILE)) { wp_die('Error saving file!'); } $wp_filetype = wp_check_filetype($filename, null); $attachment = [ 'post_mime_type' => $wp_filetype['type'], 'post_title' => sanitize_file_name($filename), 'post_content' => '', 'post_status' => 'inherit' ]; $appointment_management_attach_id = wp_insert_attachment($attachment, $file, $post_id); require_once ABSPATH . 'wp-admin/includes/image.php'; $appointment_management_attach_data = wp_generate_attachment_metadata($appointment_management_attach_id, $file); wp_update_attachment_metadata($appointment_management_attach_id, $appointment_management_attach_data); set_post_thumbnail($post_id, $appointment_management_attach_id); } // ---------------------------------------- Slider --------------------------------------------------- // for($i=1; $i<=3; $i++) { set_theme_mod('appointment_management_banner_button_label_'.$i,'Learn More'); set_theme_mod('appointment_management_banner_button_link_'.$i,''); } set_theme_mod('appointment_management_enable_banner_section',true); // ---------------------------------------- Services --------------------------------------------------- // set_theme_mod('appointment_management_enable_service_section',true); set_theme_mod('appointment_management_trending_product_heading','Hospital Department'); set_theme_mod('appointment_management_service_button_label_','View More'); // ---------------------------------------- Contact Section --------------------------------------------------- // set_theme_mod('appointment_management_phone_text', 'Have a Question? Call Us'); set_theme_mod('appointment_management_phone_number', '+12 0000-0000'); set_theme_mod('appointment_management_email_text', 'Drop us an Email'); set_theme_mod('appointment_management_email_address', 'email@example.com'); set_theme_mod('appointment_management_timing_text', 'We are open Mon - Fri'); set_theme_mod('appointment_management_opening_timing', 'Monday to Friday, 9am to 5pm'); $this->appointment_management_customizer_primary_menu(); update_option('is-demo-imported', true); } }