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

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

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

```php
<?php
/**
 * OpenStation — 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 OpenStation
 */

defined( 'ABSPATH' ) || exit;

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

```
