PluginProbe
OpenStation: Desktop Windows, Dock & Virtual Desktops for WP Admin / 0.9.6
OpenStation: Desktop Windows, Dock & Virtual Desktops for WP Admin v0.9.6
1.1.10 1.1.9 1.1.8 1.1.7 1.1.6 1.1.5 1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.1 1.0.0 0.9.8 0.9.7 0.9.6 0.9.4 0.9.5 0.9.3 0.9.2 0.9.1 0.9.0 0.8.9 0.8.8 0.8.7 All 34 releases
desktop-mode / includes / games / bootstrap.php

bootstrap.php in OpenStation: Desktop Windows, Dock & Virtual Desktops for WP Admin 0.9.6, at includes/games/bootstrap.php

31 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Desktop Mode — Games bootstrap.
4 *
5 * Loads the game system: schema (scores + challenges tables), the
6 * framework config (shared dictionary URL), the server-side
7 * game registry, the score/challenge store, the play-time store,
8 * REST routes, the Heartbeat challenge channel, the Games window +
9 * desktop icon, and the built-in game registrations (Inkfall,
10 * Alphabet Soup).
11 *
12 * New `require_once` lines belong here so the rest of the codebase
13 * keeps loading the feature through one entry point.
14 *
15 * @package WPDesktopMode
16 * @since 0.9.6
17 */
18
19 defined( 'ABSPATH' ) || exit;
20
21 require_once DESKTOP_MODE_DIR . 'includes/games/schema.php';
22 require_once DESKTOP_MODE_DIR . 'includes/games/config.php';
23 require_once DESKTOP_MODE_DIR . 'includes/games/registry.php';
24 require_once DESKTOP_MODE_DIR . 'includes/games/store.php';
25 require_once DESKTOP_MODE_DIR . 'includes/games/playtime.php';
26 require_once DESKTOP_MODE_DIR . 'includes/games/rest.php';
27 require_once DESKTOP_MODE_DIR . 'includes/games/heartbeat.php';
28 require_once DESKTOP_MODE_DIR . 'includes/games/window.php';
29 require_once DESKTOP_MODE_DIR . 'includes/games/inkfall.php';
30 require_once DESKTOP_MODE_DIR . 'includes/games/alphabet-soup.php';
31