blob: 194c4e8d967d306e8569beea1119763fde85c59d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
require_once( '../../bit_setup_inc.php' );
global $gBitSystem;
require_once( NEXUS_PKG_PATH.'Nexus.php');
if( isset( $_REQUEST['store_plugins'] ) ) {
$gNexusSystem->setActivePlugins( $_REQUEST['PLUGINS'] );
}
$gBitSystem->setBrowserTitle( 'Nexus Menus' );
$gBitSystem->display( 'bitpackage:nexus/nexus_plugins.tpl' );
?>
|