Partial bootstrap 4.5 support
This commit is contained in:
@@ -1,15 +1,19 @@
|
||||
<?php
|
||||
|
||||
use Routes\RouteCollection as RouteCollection;
|
||||
use Menus\Menu as Menu;
|
||||
use Routes\RouteCollection as RouteCollection;
|
||||
// use App\Core\Template\Output as Output;
|
||||
|
||||
RouteCollection::get('*', function(){
|
||||
|
||||
include_once 'Output.class.php';
|
||||
// include_once 'Output.class.php';
|
||||
|
||||
GLOBAL $SIDEBAR, $DROPDOWN;
|
||||
|
||||
$SIDEBAR = new Menu( array('id' => 'side-menu', 'class' => "nav") );
|
||||
$DROPDOWN = new Menu( array("class" => 'dropdown-menu') );
|
||||
|
||||
//HACK
|
||||
//$DROPDOWN = new Menu( array("class" => 'dropdown-menu') );
|
||||
$DROPDOWN = [];
|
||||
|
||||
}, -11)->doIgnore();
|
||||
|
||||
Reference in New Issue
Block a user