| 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 |
* - asset-guard.php — re-asserts our assets against |
| 15 |
* force-dequeue plugins |
| 16 |
* - shell.php — openstation_render_shell() |
| 17 |
* - chromeless-bridge.php — chromeless iframe bridge + |
| 18 |
* the offset-neutralizer script |
| 19 |
* - chromeless-title-actions.php — hides in-page "Add New" buttons |
| 20 |
* that duplicate a window tab |
| 21 |
* - classic-link-interceptor.php — detached-tab link rewriter |
| 22 |
* - media-grid-query.php — keeps the chromeless flag out of |
| 23 |
* the Media Library grid's query |
| 24 |
* |
| 25 |
* @package OpenStation |
| 26 |
*/ |
| 27 |
|
| 28 |
defined( 'ABSPATH' ) || exit; |
| 29 |
|
| 30 |
require_once __DIR__ . '/render/body-classes.php'; |
| 31 |
require_once __DIR__ . '/render/assets.php'; |
| 32 |
require_once __DIR__ . '/render/asset-guard.php'; |
| 33 |
require_once __DIR__ . '/render/chromeless-trim.php'; |
| 34 |
require_once __DIR__ . '/render/shell.php'; |
| 35 |
require_once __DIR__ . '/render/chromeless-bridge.php'; |
| 36 |
require_once __DIR__ . '/render/chromeless-title-actions.php'; |
| 37 |
require_once __DIR__ . '/render/classic-link-interceptor.php'; |
| 38 |
require_once __DIR__ . '/render/media-grid-query.php'; |
| 39 |
|