PluginProbe
Plugin Groups / 1.0.3
Plugin Groups v1.0.3
trunk 1.0.3 1.1.0 1.2.1 1.2.2 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.9 3.0.0
plugin-groups / includes / edit.php

edit.php in Plugin Groups 1.0.3, at includes/edit.php

25 lines 846 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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