# plugin-groups/trunk/includes/main.php

Plugin Groups, version trunk. 19 lines.

- Page: https://pluginprobe.com/plugins/plugin-groups/trunk/code/includes/main.php
- Raw: https://pluginprobe.com/plugins/plugin-groups/trunk/raw/includes/main.php
- Modified: 2026-07-08T15:07:30+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/plugin-groups/trunk/code/includes/main.php#L10-L20`.

```php
<?php
/**
 * Main UI admin page.
 *
 * The full config is fetched client-side from the `load` REST route; this
 * only needs to hand the app enough to make that first request.
 *
 * @package plugin_groups
 * @var $bootstrap array {
 *     @type string $loadURL      REST URL for the `load` route.
 *     @type string $restNonce    Nonce for X-WP-Nonce.
 *     @type int    $siteID       Current site ID.
 * 	   @type bool   $networkAdmin Flag if in network admin.
 * }
 */

?>
<div class="plugin-groups-main flex h-full flex-col overflow-hidden" id="plg-app" data-bootstrap="<?php echo esc_attr( wp_json_encode( $bootstrap ) ); ?>"></div>

```
