# desktop-mode/1.1.10/includes/living-tree/bootstrap.php

OpenStation: Desktop Windows, Dock &amp; Virtual Desktops for WP Admin, version 1.1.10. 24 lines.

- Page: https://pluginprobe.com/plugins/desktop-mode/1.1.10/code/includes/living-tree/bootstrap.php
- Raw: https://pluginprobe.com/plugins/desktop-mode/1.1.10/raw/includes/living-tree/bootstrap.php
- Modified: 2026-08-07T20:39:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/desktop-mode/1.1.10/code/includes/living-tree/bootstrap.php#L10-L20`.

```php
<?php
/**
 * OpenStation — Living Tree wallpaper module bootstrap.
 *
 * The `wp-living-tree` canvas wallpaper renders the site as a living
 * plant organism whose shape is the visual fingerprint of the site's
 * life. WordPress emits only *hormones* (age, vigour, health, diversity,
 * bloom…); the growth simulator in the JS bundle decides all geometry.
 * See `docs/living-tree-algorithm.md` for the full algorithm.
 *
 * This module owns the server side: the REST snapshot endpoint that
 * carries the compact site DNA, the metric helpers behind it, the
 * wallpaper registration, and the bundle asset handle.
 *
 * @package OpenStation
 */

defined( 'ABSPATH' ) || exit;

require_once __DIR__ . '/helpers.php';
require_once __DIR__ . '/snapshot.php';
require_once __DIR__ . '/assets.php';
require_once __DIR__ . '/wallpaper.php';

```
