PluginProbe
OpenStation: Desktop Windows, Dock & Virtual Desktops for WP Admin / 1.1.2
OpenStation: Desktop Windows, Dock & Virtual Desktops for WP Admin v1.1.2
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 / render.php

render.php in OpenStation: Desktop Windows, Dock & Virtual Desktops for WP Admin 1.1.2, at includes/render.php

35 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 — Render layer (umbrella loader).
4 *
5 * Was a 2,525-LOC god-module before the architecture-0.8.1 split;
6 * the body has now been sliced into one focused file per concern
7 * under `includes/render/`. This file remains as the umbrella
8 * `require_once` so existing plugins or test bootstraps that
9 * `require_once 'includes/render.php'` continue to load the same
10 * rendering surface they always did.
11 *
12 * - body-classes.php — admin_body_class filter
13 * - assets.php — openstation_enqueue_assets()
14 * - shell.php — openstation_render_shell()
15 * - chromeless-bridge.php — chromeless iframe bridge +
16 * the offset-neutralizer script
17 * - chromeless-title-actions.php — hides in-page "Add New" buttons
18 * that duplicate a window tab
19 * - classic-link-interceptor.php — detached-tab link rewriter
20 * - media-grid-query.php — keeps the chromeless flag out of
21 * the Media Library grid's query
22 *
23 * @package OpenStation
24 */
25
26 defined( 'ABSPATH' ) || exit;
27
28 require_once __DIR__ . '/render/body-classes.php';
29 require_once __DIR__ . '/render/assets.php';
30 require_once __DIR__ . '/render/shell.php';
31 require_once __DIR__ . '/render/chromeless-bridge.php';
32 require_once __DIR__ . '/render/chromeless-title-actions.php';
33 require_once __DIR__ . '/render/classic-link-interceptor.php';
34 require_once __DIR__ . '/render/media-grid-query.php';
35