# desktop-mode/1.1.6/includes/content-graph/bootstrap.php

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

- Page: https://pluginprobe.com/plugins/desktop-mode/1.1.6/code/includes/content-graph/bootstrap.php
- Raw: https://pluginprobe.com/plugins/desktop-mode/1.1.6/raw/includes/content-graph/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.6/code/includes/content-graph/bootstrap.php#L10-L20`.

```php
<?php
/**
 * OpenStation — Content Graph module bootstrap.
 *
 * Native window with id `desktop-mode-content-graph` plus a desktop
 * shortcut icon. The window renders a PixiJS-driven force-directed
 * graph of posts and pages (and any opt-in public CPT) wired together
 * by the internal hyperlinks the editors authored. Clicking a node
 * opens a side panel with the node's author, contributors, comments,
 * categories, attached media, and revisions; clicking another post in
 * that panel re-centres the graph; clicking author/category/media
 * deep-links to the matching native window.
 *
 * @package OpenStation
 */

defined( 'ABSPATH' ) || exit;

require_once __DIR__ . '/assets.php';
require_once __DIR__ . '/graph-builder.php';
require_once __DIR__ . '/rest.php';
require_once __DIR__ . '/window.php';

```
