{
  "$schema": "https://playground.wordpress.net/blueprint-schema.json",
  "landingPage": "/",
  "features": {
    "networking": true
  },
  "preferredVersions": {
    "php": "latest",
    "wp": "latest"
  },
  "phpExtensionBundles": [
    "kitchen-sink"
  ],
  "steps": [
    { "step": "login" },
    {
      "step": "installPlugin",
      "pluginData": { "resource": "wordpress.org/plugins", "slug": "nooz" },
      "options": { "activate": true }
    },
    {
      "step": "installTheme",
      "themeData": {
        "resource": "url",
        "url": "https://mightydev.sfo3.digitaloceanspaces.com/gitlab/nooz/modern-business-1.zip"
      }
    },
    {
      "step": "installTheme",
      "themeData": {
        "resource": "url",
        "url": "https://mightydev.sfo3.digitaloceanspaces.com/gitlab/nooz/modern-business-child-1.zip"
      },
      "options": { "activate": true }
    },
    {
      "step": "writeFile",
      "path": "/wordpress/wp-content/mu-plugins/lock-demo-themes.php",
      "data": "<?php\n/**\n * Must-use plugin: prevent update prompts for the Nooz demo themes.\n * Runs automatically — cannot be deactivated by users.\n */\nadd_filter( 'site_transient_update_themes', function ( $transient ) {\n    if ( ! empty( $transient->response ) ) {\n        unset( $transient->response['modern-business'] );\n        unset( $transient->response['modern-business-child'] );\n    }\n    return $transient;\n} );\n"
    },
    { "step": "resetData" },
    {
      "step": "importWxr",
      "file": {
        "resource": "url",
        "url": "https://mightydev.sfo3.digitaloceanspaces.com/gitlab/nooz/playground-nooz.content.xml"
      }
    },
    {
      "step": "setSiteOptions",
      "options": {
        "blogname": "Nooz Live Demo",
        "mdnooz_auto_init_default_pages": "publish",
        "mdnooz_release_boilerplate": "<strong>About Mighty Digital</strong>\nMighty Digital is a web and software development company with over 25 years of working with some of the most innovative names in Silicon Valley. We provide web development and content creation services with a unique perspective on what companies in the valley are looking for.",
        "mdnooz_release_contact": "<strong>Media Contact</strong>\nAnnie Smith\n1425 St. Angel Street\nSan Francisco, [CA\nannie@mightydigital.com](mailto:CA\nannie@mightydigital.com)",
        "mdnooz_release_location": "San Francisco, CA"
      }
    },
    {
      "step": "updateUserMeta",
      "meta": { "admin_color": "modern" },
      "userId": 1
    },
    {
      "step": "runPHP",
      "code": "<?php require_once '/wordpress/wp-load.php'; update_user_meta(1, 'rich_editing', 'false'); ?>"
    },
    {
      "step": "runPHP",
      "code": "<?php\nrequire '/wordpress/wp-load.php';\n\n// Enable pretty permalinks\nupdate_option( 'permalink_structure', '/' . chr(37) . 'postname' . chr(37) . '/' );\n\n// Assign Main Menu to the theme's primary navigation location\n$menu = get_term_by( 'slug', 'main-menu', 'nav_menu' );\nif ( $menu ) {\n    set_theme_mod( 'nav_menu_locations', [ 'primary' => $menu->term_id ] );\n}\n\n// Assign the hero image to the Nooz plugin option\n$img = get_page_by_title( 'hero-nooz-grid-1', OBJECT, 'attachment' );\nif ( $img ) {\n    update_option( 'hero-nooz-grid-1', $img->ID );\n}\n?>"
    },
    {
      "step": "runPHP",
      "code": "<?php\ndefine( 'WP_ADMIN', true );\nrequire '/wordpress/wp-load.php';\nrequire_once ABSPATH . 'wp-admin/includes/plugin.php';\nrequire_once ABSPATH . 'wp-admin/includes/admin.php';\ndo_action( 'admin_init' );\n?>"
    }
  ]
}
