diff --git a/index.php b/index.php index 74502c1..f2f82df 100755 --- a/index.php +++ b/index.php @@ -1,4 +1,20 @@ - +
@@ -7,6 +23,17 @@ + '); + } + } + ?> + @@ -87,8 +114,6 @@ // Load Context Menu //////////////////////////////////////////////////////////// - $context_menu = file_get_contents(COMPONENTS . "/filemanager/context_menu.json"); - $context_menu = json_decode($context_menu,true); foreach($context_menu as $menu_item=>$data){ if($data['title']=='Break'){ @@ -139,8 +164,6 @@ // Load Right Bar //////////////////////////////////////////////////////////// - $right_bar = file_get_contents(COMPONENTS . "/right_bar.json"); - $right_bar = json_decode($right_bar,true); foreach($right_bar as $item_rb=>$data){ if($data['title']=='break'){ @@ -174,9 +197,6 @@ // LOAD COMPONENTS ////////////////////////////////////////////////////////////////// - $components = file_get_contents(COMPONENTS . "/load.json"); - $components = json_decode($components,true); - // JS foreach($components as $component){ if(file_exists(COMPONENTS . "/" . $component . "/init.js")){ @@ -184,14 +204,6 @@ } } - - // CSS - foreach($components as $component){ - if(file_exists(COMPONENTS . "/" . $component . "/screen.css")){ - echo(''); - } - } - } ?>