Blame view

html/Generateur/main_generateur.php 1.77 KB
c825216f   lwadbled   feat(main.php): R...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
  <!DOCTYPE html>
  <html>
  	<style>
  		/* Style des boutons */
  		.func-button{
  			height: 30px;
  			width: 80px;
  			background: #fff;
  			border-radius: 10px;
  			position: absolute;
  		}
  		.func-button:hover{
  			background: #b8ff70;
  		}
  		.func-button:active{
  			background: #07e50a;
  		}
  	</style>
  	<?php
  		echo '<div class="d-md-flex flex-md-equal w-100 my-md-3 pl-md-3">';
  		echo '<div class="mr-md-3 pt-3 px-3 pt-md-5 px-md-5 text-center">';
  		/* Affichage image */
  		include('./Scripts/creation_img.php');		
  		echo '</div>';
  		echo '<div class="bg-light mr-md-3 pt-3 px-3 pt-md-5 px-md-5 overflow-hidden">';
  		/* Affichage des commandes de l'appareil */
  		echo '<div class="my-3 py-3">';
  		echo '<h2 class="display-6 text-center">Panel de commande</h2>';
  		echo '</div>';
  		//$chemin = $Appareil[$i]['type'];
  		//$files = array_diff(scandir($chemin),array('..','.'));
  		echo '<div class="d-md-flex flex-md-equal w-100 my-md-3 pl-md-3">';
  		/* On parcourt l'arborescence pour trouver les fichiers 'form_fichiers.php'
  		 *  Ces fichiers affichent les différents boutons correspondant aux commandes de l'appareil */
  		foreach($files as $dir){
  			$path = $chemin.'/'.$dir;
  			if(is_dir($path)){
  				$subdir = array_diff(scandir($path),array('..','.'));
  				if($dir!="Menus"){
  					echo '<div class="mr-md-1 pt-1 px-1 pt-md-1 px-md-1">';
  				}
  				foreach($subdir as $new_dir){
  					$path2 = $path.'/'.$new_dir;
  					if(is_dir($path2)){
  						$fichiers = array_diff(scandir($path2),array('..','.'));
  						foreach($fichiers as $form){
  							$path3 = $path2.'/'.$form;
  							if(is_file($path3) && strpos($path3,"form")!=false){
  								include($path3);
  							}
  						}
  					}						
  				}
  				if($dir!="Menus"){
  					echo '</div>';
  				}
  			}
  		}	
  		echo '</div>';
  		echo '</div>';
  		echo '</div>';					
  	?>	
  </html>