PluginProbe
OpenStation: Desktop Windows, Dock & Virtual Desktops for WP Admin / 1.1.8
OpenStation: Desktop Windows, Dock & Virtual Desktops for WP Admin v1.1.8
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 0.8.6 All 33 releases
desktop-mode / includes / my-wordpress / bootstrap.php

bootstrap.php in OpenStation: Desktop Windows, Dock & Virtual Desktops for WP Admin 1.1.8, at includes/my-wordpress/bootstrap.php

38 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * OpenStation — "My WordPress" module bootstrap.
4 *
5 * Pinned virtual folder on the desktop wallpaper that opens a native
6 * file-explorer window for browsing WordPress entities (Posts,
7 * Pages, Users, and Media today). Future phases add Comments, Tags,
8 * Categories, Themes, and Plugins as additional sub-folders.
9 *
10 * @package OpenStation
11 */
12
13 defined( 'ABSPATH' ) || exit;
14
15 require_once __DIR__ . '/assets.php';
16 require_once __DIR__ . '/window.php';
17 require_once __DIR__ . '/owner.php';
18 require_once __DIR__ . '/post-types.php';
19 require_once __DIR__ . '/class-openstation-my-wordpress-post-type-controller.php';
20 require_once __DIR__ . '/rest-post-type.php';
21 require_once __DIR__ . '/lock.php';
22 require_once __DIR__ . '/user-stats.php';
23 require_once __DIR__ . '/user-list-fields.php';
24 require_once __DIR__ . '/user-footprint.php';
25 require_once __DIR__ . '/users-list-footprint.php';
26 require_once __DIR__ . '/term-stats.php';
27 require_once __DIR__ . '/comment-stats.php';
28 require_once __DIR__ . '/media-usage.php';
29 require_once __DIR__ . '/attached-media.php';
30 require_once __DIR__ . '/preview-actions.php';
31
32 // Third-party integrations. Each file is inert unless its plugin is
33 // active, so requiring them unconditionally costs one include.
34 require_once __DIR__ . '/integrations/woocommerce.php';
35 require_once __DIR__ . '/integrations/woocommerce-customers.php';
36 require_once __DIR__ . '/integrations/woocommerce-customer-window.php';
37 require_once __DIR__ . '/integrations/woocommerce-relations.php';
38