| 1 |
<?php |
| 2 |
$plugin_groups = Plugin_Groups_Options::get_single( 'plugin_groups' ); |
| 3 |
$plugins = get_plugins(); |
| 4 |
|
| 5 |
?> |
| 6 |
<div class="wrap" id="plugin-groups-main-canvas"> |
| 7 |
<span class="wp-baldrick spinner" style="float: none; display: block;" data-target="#plugin-groups-main-canvas" data-callback="plorg_canvas_init" data-type="json" data-request="#plugin-groups-live-config" data-event="click" data-template="#main-ui-template" data-autoload="true"></span> |
| 8 |
</div> |
| 9 |
|
| 10 |
<div class="clear"></div> |
| 11 |
|
| 12 |
<input type="hidden" class="clear" autocomplete="off" id="plugin-groups-live-config" style="width:100%;" value="<?php echo esc_attr( json_encode($plugin_groups) ); ?>"> |
| 13 |
|
| 14 |
<script type="text/html" id="main-ui-template"> |
| 15 |
<?php |
| 16 |
// pull in the join table card template |
| 17 |
include PLORG_PATH . 'includes/templates/main-ui.php'; |
| 18 |
?> |
| 19 |
</script> |
| 20 |
|
| 21 |
|
| 22 |
|
| 23 |
|
| 24 |
|
| 25 |
|