File: /home/alfouzantranspor/www/wp-content/themes/cargo-transport/inc/dashboard/demo-importer.php
<div class="theme-import">
<?php
// Check if the demo import has been completed
$cargo_transport_demo_import_completed = get_option('cargo_transport_demo_import_completed', false);
// If the demo import is completed, display the "View Site" button
if ($cargo_transport_demo_import_completed) {
echo '<p class="notice-text">' . esc_html__('Your demo import has been completed successfully.', 'cargo-transport') . '</p>';
echo '<span><a href="' . esc_url(home_url()) . '" class= "run-import view-site" target="_blank">' . esc_html__('VIEW SITE', 'cargo-transport') . '</a></span>';
}
// POST and update the customizer and other related data
if (isset($_POST['submit'])) {
// ------- Create Nav Menu --------
$cargo_transport_menuname = 'Main Menus';
$cargo_transport_bpmenulocation = 'primary';
$cargo_transport_menu_exists = wp_get_nav_menu_object($cargo_transport_menuname);
if (!$cargo_transport_menu_exists) {
$cargo_transport_menu_id = wp_create_nav_menu($cargo_transport_menuname);
// Create Home Page
$cargo_transport_home_title = 'Home';
$cargo_transport_home = array(
'post_type' => 'page',
'post_title' => $cargo_transport_home_title,
'post_content' => '',
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'home'
);
$cargo_transport_home_id = wp_insert_post($cargo_transport_home);
// Assign Home Page Template
add_post_meta($cargo_transport_home_id, '_wp_page_template', 'page-template/custom-frontpage.php');
// Update options to set Home Page as the front page
update_option('page_on_front', $cargo_transport_home_id);
update_option('show_on_front', 'page');
// Add Home Page to Menu
wp_update_nav_menu_item($cargo_transport_menu_id, 0, array(
'menu-item-title' => __('Home', 'cargo-transport'),
'menu-item-classes' => 'home',
'menu-item-url' => home_url('/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $cargo_transport_home_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type'
));
// Create About Page with Dummy Content
$cargo_transport_pages_title = 'About';
$cargo_transport_pages_content = '
<p>Explore all the pages we have on our website. Find information about our services, company, and more.</p>
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.<br>
All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.';
$cargo_transport_pages = array(
'post_type' => 'page',
'post_title' => $cargo_transport_pages_title,
'post_content' => $cargo_transport_pages_content,
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'pages'
);
$cargo_transport_pages_id = wp_insert_post($cargo_transport_pages);
// Add About Page to Menu
wp_update_nav_menu_item($cargo_transport_menu_id, 0, array(
'menu-item-title' => __('About', 'cargo-transport'),
'menu-item-classes' => 'pages',
'menu-item-url' => home_url('/pages/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $cargo_transport_pages_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type'
));
// Create Services Page with Dummy Content
$cargo_transport_about_title = 'Services';
$cargo_transport_about_content = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam...<br>
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.<br>
There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which dont look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isnt anything embarrassing hidden in the middle of text.<br>
All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.';
$cargo_transport_about = array(
'post_type' => 'page',
'post_title' => $cargo_transport_about_title,
'post_content' => $cargo_transport_about_content,
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'about-us'
);
$cargo_transport_about_id = wp_insert_post($cargo_transport_about);
// Add Services Page to Menu
wp_update_nav_menu_item($cargo_transport_menu_id, 0, array(
'menu-item-title' => __('Services', 'cargo-transport'),
'menu-item-classes' => 'about-us',
'menu-item-url' => home_url('/about-us/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $cargo_transport_about_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type'
));
// ===== CREATE BLOG PAGE =====
$cargo_transport_blog_page = get_page_by_path('blog');
if (!$cargo_transport_blog_page) {
$cargo_transport_blog_page_id = wp_insert_post(array(
'post_type' => 'page',
'post_title' => 'Blog',
'post_status' => 'publish',
'post_name' => 'blog',
));
} else {
$cargo_transport_blog_page_id = $cargo_transport_blog_page->ID;
}
update_option('page_for_posts', $cargo_transport_blog_page_id);
wp_update_nav_menu_item($cargo_transport_menu_id, 0, array(
'menu-item-title' => __('Blog', 'cargo-transport'),
'menu-item-object-id' => $cargo_transport_blog_page_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type',
'menu-item-status' => 'publish',
));
// Create Pages Page with Dummy Content
$cargo_transport_about_title = 'Pages';
$cargo_transport_about_content = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam...<br>
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.<br>
There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which dont look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isnt anything embarrassing hidden in the middle of text.<br>
All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.';
$cargo_transport_about = array(
'post_type' => 'page',
'post_title' => $cargo_transport_about_title,
'post_content' => $cargo_transport_about_content,
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'about-us'
);
$cargo_transport_about_id = wp_insert_post($cargo_transport_about);
// Add Pages Page to Menu
wp_update_nav_menu_item($cargo_transport_menu_id, 0, array(
'menu-item-title' => __('Pages', 'cargo-transport'),
'menu-item-classes' => 'about-us',
'menu-item-url' => home_url('/about-us/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $cargo_transport_about_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type'
));
// Create Contact Page with Dummy Content
$cargo_transport_about_title = 'Contact';
$cargo_transport_about_content = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam...<br>
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.<br>
There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which dont look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isnt anything embarrassing hidden in the middle of text.<br>
All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.';
$cargo_transport_about = array(
'post_type' => 'page',
'post_title' => $cargo_transport_about_title,
'post_content' => $cargo_transport_about_content,
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'about-us'
);
$cargo_transport_about_id = wp_insert_post($cargo_transport_about);
// Add Contact Page to Menu
wp_update_nav_menu_item($cargo_transport_menu_id, 0, array(
'menu-item-title' => __('Contact', 'cargo-transport'),
'menu-item-classes' => 'about-us',
'menu-item-url' => home_url('/about-us/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $cargo_transport_about_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type'
));
// Set the menu location if it's not already set
if (!has_nav_menu($cargo_transport_bpmenulocation)) {
$cargo_transport_locations = get_theme_mod('nav_menu_locations'); // Use 'nav_menu_locations' to get locations array
if (empty($cargo_transport_locations)) {
$cargo_transport_locations = array();
}
$cargo_transport_locations[$cargo_transport_bpmenulocation] = $cargo_transport_menu_id;
set_theme_mod('nav_menu_locations', $cargo_transport_locations);
}
}
// Social Icon
set_theme_mod( 'logistic_transport_facebook_url', '#' );
set_theme_mod( 'logistic_transport_twitter_url', '#' );
set_theme_mod( 'logistic_transport_instagram_url', '#' );
set_theme_mod( 'logistic_transport_linkdin_url', '#' );
set_theme_mod( 'logistic_transport_youtube_url', '#' );
//Header
set_theme_mod( 'logistic_transport_topbar_hide', true );
set_theme_mod( 'logistic_transport_call', '+00 123 456 7890' );
set_theme_mod( 'logistic_transport_mail', 'xyz123@example.com' );
set_theme_mod( 'logistic_transport_time', 'Mon to Fri 08:00 - 18:00' );
set_theme_mod( 'logistic_transport_request_btn_text', 'REQUEST A RATE' );
set_theme_mod( 'logistic_transport_request_btn_url', '#' );
//Slider
set_theme_mod( 'logistic_transport_slider_hide_show', true );
set_theme_mod( 'logistic_transport_slider_button_text', 'MAKE A BOOKING' );
set_theme_mod( 'logistic_transport_slider_button_link', '#' );
$logistic_transport_slider_titles = [
'FAST AND RELIABLE TRANSPORT',
'SOLUTIONS THAT MOVE YOU',
'GLOBAL REACH, LOCAL TOUCH',
'DRIVING YOUR SUCCESS',
];
for($logistic_transport_i=1;$logistic_transport_i<=4;$logistic_transport_i++){
$logistic_transport_slider_title = $logistic_transport_slider_titles[$logistic_transport_i - 1];
$logistic_transport_slider_content = 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard';
// Create post object
$logistic_transport_my_post = array(
'post_title' => wp_strip_all_tags( $logistic_transport_slider_title ),
'post_content' => $logistic_transport_slider_content,
'post_status' => 'publish',
'post_type' => 'page',
);
// Insert the post into the database
$logistic_transport_post_id = wp_insert_post( $logistic_transport_my_post );
if ($logistic_transport_post_id) {
// Set the theme mod for the slider page
set_theme_mod('logistic_transport_slider_page' . $logistic_transport_i, $logistic_transport_post_id);
$logistic_transport_image_url = get_theme_file_uri().'/images/Banner'.$logistic_transport_i.'.png';
$logistic_transport_image_id = media_sideload_image($logistic_transport_image_url, $logistic_transport_post_id, null, 'id');
if (!is_wp_error($logistic_transport_image_id)) {
// Set the downloaded image as the post's featured image
set_post_thumbnail($logistic_transport_post_id, $logistic_transport_image_id);
}
}
}
// About Section
set_theme_mod( 'logistic_transport_discover_post', 'TRACK YOUR SHIPMENT NOW' );
$logistic_transport_service_titles = array(
"TRACK YOUR SHIPMENT NOW",
"LOREM IPSUM"
);
$logistic_transport_service_image_url = get_theme_file_uri() . '/images/about-image.png';
for ($logistic_transport_i = 1; $logistic_transport_i <= 2; $logistic_transport_i++) {
// Create post
$logistic_transport_title = $logistic_transport_service_titles[$logistic_transport_i - 1];
$logistic_transport_content = "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, 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.";
$logistic_transport_post_data = array(
'post_title' => wp_strip_all_tags($logistic_transport_title),
'post_content' => wp_strip_all_tags($logistic_transport_content),
'post_status' => 'publish',
'post_type' => 'post',
);
$logistic_transport_post_id = wp_insert_post($logistic_transport_post_data);
if (!is_wp_error($logistic_transport_post_id)) {
// Add featured image
$logistic_transport_image_id = media_sideload_image($logistic_transport_service_image_url, $logistic_transport_post_id, null, 'id');
if (!is_wp_error($logistic_transport_image_id)) {
set_post_thumbnail($logistic_transport_post_id, $logistic_transport_image_id);
}
// Save post ID in theme mod
set_theme_mod('logistic_transport_discover_post' . $logistic_transport_i, $logistic_transport_post_id);
}
}
//Copyright Text
set_theme_mod( 'digital_advertising_footer_copy', 'By ThemesCaliber' );
// Set the demo import completion flag
update_option('cargo_transport_demo_import_completed', true);
// Display success message and "View Site" button
echo '<p class="notice-text">' . esc_html__('Your demo import has been completed successfully.', 'cargo-transport') . '</p>';
echo '<span><a href="' . esc_url(home_url()) . '" class="run-import site-btn" target="_blank">' . esc_html__('VIEW SITE', 'cargo-transport') . '</a></span>';
}
?>
<p class="note"><?php esc_html_e( 'Please Note: If your website is live and already contains data, we recommend creating a backup first. Running this importer will replace your current settings with the custom values from the demo.', 'cargo-transport' ); ?></p>
<form action="<?php echo esc_url(home_url()); ?>/wp-admin/themes.php?page=cargo_transport_guide" method="POST" onsubmit="return validate(this);">
<?php if (!get_option('cargo_transport_demo_import_completed')) : ?>
<button type="submit" name="submit" class="run-import">
<?php esc_html_e('Run Importer','cargo-transport'); ?>
<span id="spinner" style="display: none;">
<img src="<?php echo esc_url(get_template_directory_uri()); ?>/images/spinner.gif" alt="Loading..." style="width:34px; height:34px; vertical-align: middle;" />
</span>
</button>
<?php endif; ?>
</form>
<script type="text/javascript">
function validate(valid) {
if(confirm("Do you really want to import the theme demo content?")){
document.getElementById('spinner').style.display = 'inline-block';
}
else {
return false;
}
}
</script>
</div>