# desktop-mode/0.9.8/includes/notes/bootstrap.php

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

- Page: https://pluginprobe.com/plugins/desktop-mode/0.9.8/code/includes/notes/bootstrap.php
- Raw: https://pluginprobe.com/plugins/desktop-mode/0.9.8/raw/includes/notes/bootstrap.php
- Modified: 2026-07-31T17:50:26+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/0.9.8/code/includes/notes/bootstrap.php#L10-L20`.

```php
<?php
/**
 * Desktop Mode — Pinned notes bootstrap.
 *
 * Wires the pinned-notes feature: the `wpd_note` CPT, the REST
 * controller, and the Heartbeat delta sync. The Note Pad widget that
 * creates notes registers separately in
 * `includes/widgets/widget-notes.php`.
 *
 * @package WPDesktopMode
 */

defined( 'ABSPATH' ) || exit;

require_once __DIR__ . '/cpt.php';
require_once __DIR__ . '/rest.php';
require_once __DIR__ . '/heartbeat.php';
require_once __DIR__ . '/recycle-bin.php';

```
