# desktop-mode/1.1.10/includes/first-run/bootstrap.php

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

- Page: https://pluginprobe.com/plugins/desktop-mode/1.1.10/code/includes/first-run/bootstrap.php
- Raw: https://pluginprobe.com/plugins/desktop-mode/1.1.10/raw/includes/first-run/bootstrap.php
- Modified: 2026-09-18T20:10:18+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/first-run/bootstrap.php#L10-L20`.

```php
<?php
/**
 * OpenStation — first-run module bootstrap.
 *
 * The install / first-enable stamps: the facts that answer "did this
 * install ever get turned on, and how fast?". The deactivation
 * feedback payload (`includes/feedback/`) reads them.
 *
 * Loaded unconditionally, not inside the admin-only block: the stamps
 * are written from the AJAX toggle, the portal and the activation
 * hook, none of which is a wp-admin page render.
 *
 * @package OpenStation
 */

defined( 'ABSPATH' ) || exit;

require_once __DIR__ . '/stamps.php';

```
