112 lines
		
	
	
		
			7.0 KiB
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			112 lines
		
	
	
		
			7.0 KiB
		
	
	
	
		
			PHP
		
	
| 
 | |
|                 <!-- widget "config" -->
 | |
|                 <div class="card text-center w-75 mx-lef">
 | |
|                     <p class="h4 card-header">Jilo web configuration</p>
 | |
|                     <div class="card-body">
 | |
|                         <p class="card-text">main variables</p>
 | |
| <?php
 | |
| include '../app/helpers/render.php';
 | |
| renderConfig($config, '0');
 | |
| echo "\n";
 | |
| ?>
 | |
| 
 | |
| <hr />
 | |
|                         <p class="card-text">platforms configuration  <a class="btn btn-secondary" style="padding: 0px;" href="<?= $app_root ?>?page=config&item=platform&action=add">add new</a></p>
 | |
| 
 | |
| <?php foreach ($platformsAll as $platform_array) {
 | |
|     $agents = $agentObject->getAgentDetails($platform_array['id']);
 | |
| ?>
 | |
| 
 | |
|                         <div class="row mb-3" style="padding-left: 0px;">
 | |
|                             <div class="border bg-light" style="padding-left: 50px; padding-bottom: 0px; padding-top: 0px;">
 | |
|                                 <a style="text-decoration: none;" data-toggle="collapse" href="#collapsePlatform<?= $platform_array['id'] ?>" role="button" aria-expanded="true" aria-controls="collapsePlatform<?= $platform_array['id'] ?>">
 | |
|                                     <div class="border bg-white text-start mb-3 rounded mt-3" data-toggle="tooltip" data-placement="bottom" title="configuration for platform <?= $platform_array['id'] ?>">
 | |
|                                         <i class="fas fa-wrench"></i>
 | |
|                                         <small>platform <?= $platform_array['id'] ?> (<?= $platform_array['name'] ?>)</small>
 | |
|                                     </div>
 | |
|                                 </a>
 | |
|                                 <div class="collapse show" id="collapsePlatform<?= $platform_array['id'] ?>">
 | |
| 
 | |
|                                     <div class="row mb-1" style="padding-left: 0px;">
 | |
|                                         <div class="col-md-8 text-start">
 | |
| 
 | |
|                                             <div class="row mb-1">
 | |
|                                                 <div class="col-md-8 text-start">
 | |
|                                                     <a class="btn btn-secondary" style="padding: 2px;" href="<?= $app_root ?>?page=config&platform=<?= htmlspecialchars($platform_array['id']) ?>&action=edit">edit platform</a>
 | |
| <?php if (count($platformsAll) <= 1) { ?>
 | |
|                                                     <span class="btn btn-light" style="padding: 2px;" href="#" data-toggle="tooltip" data-placement="right" data-offset="30.0" title="can't delete the last platform">delete platform</span>
 | |
| <?php } else { ?>
 | |
|                                                     <a class="btn btn-danger" style="padding: 2px;" href="<?= $app_root ?>?page=config&platform=<?= htmlspecialchars($platform_array['id'])?>&action=delete">delete platform</a>
 | |
| <?php } ?>
 | |
|                                                 </div>
 | |
|                                             </div>
 | |
| 
 | |
|                                         </div>
 | |
|                                         <div style="padding-left: 100px; padding-bottom: 20px;">
 | |
| <?php foreach ($platform_array as $key => $value) {
 | |
|         if ($key === 'id') continue;
 | |
| ?>
 | |
|                                             <div class="row mb-1" style="padding-left: 100px;">
 | |
|                                                 <div class="col-md-4 text-end">
 | |
|                                                     <?= $key ?>:
 | |
|                                                 </div>
 | |
|                                                 <div class="border col-md-8 text-start">
 | |
|                                                     <?= $value ?>
 | |
|                                                 </div>
 | |
|                                             </div>
 | |
| <?php } ?>
 | |
| 
 | |
|                                         </div>
 | |
|                                         <hr />
 | |
|                                         <p class="card-text">jilo agents on platform <?= $platform_array['id'] ?> (<?= $platform_array['name'] ?>)
 | |
|                                             <br />
 | |
|                                             total <?= count($agents) ?> <?= count($agents) === 1 ? 'jilo agent' : 'jilo agents' ?> 
 | |
|                                             <a class="btn btn-secondary" style="padding: 0px;" href="<?= $app_root ?>?page=config&platform=<?= $platform_array['id'] ?>&action=add-agent">
 | |
|                                                 add new
 | |
|                                             </a>
 | |
|                                         </p>
 | |
| 
 | |
| <?php foreach ($agents as $agent_array) { ?>
 | |
| 
 | |
|                                         <div class="row mb-3" style="padding-left: 0px;">
 | |
|                                             <div class="border rounded bg-light" style="padding-left: 50px; padding-bottom: 20px; padding-top: 20px;">
 | |
|                                                 <div class="row mb-1" style="padding-left: 0px;">
 | |
|                                                     <div class="col-md-4 text-end">
 | |
|                                                         agent id <?= $agent_array['id'] ?>:
 | |
|                                                     </div>
 | |
|                                                     <div class="col-md-8 text-start">
 | |
|                                                         <a class="btn btn-secondary" style="padding: 2px;" href="<?= $app_root ?>?page=config&platform=<?= htmlspecialchars($agent_array['platform_id']) ?>&agent=<?= htmlspecialchars($agent_array['id']) ?>&action=edit">edit agent</a>
 | |
|                                                         <a class="btn btn-danger" style="padding: 2px;" href="<?= $app_root ?>?page=config&platform=<?= htmlspecialchars($agent_array['platform_id'])?>&agent=<?= htmlspecialchars($agent_array['id']) ?>&action=delete">delete agent</a>
 | |
|                                                     </div>
 | |
|                                                     <div style="padding-left: 100px; padding-bottom: 20px;">
 | |
| <?php foreach ($agent_array as $key => $value) {
 | |
|         if ($key === 'id') continue;
 | |
| ?>
 | |
|                                                         <div class="row mb-1" style="padding-left: 100px;">
 | |
|                                                             <div class="col-md-4 text-end">
 | |
|                                                                 <?= $key ?>:
 | |
|                                                             </div>
 | |
|                                                             <div class="border col-md-8 text-start">
 | |
|                                                                 <?= $value ?>
 | |
|                                                             </div>
 | |
|                                                         </div>
 | |
| <?php } ?>
 | |
|                                                     </div>
 | |
|                                                 </div>
 | |
|                                             </div>
 | |
|                                         </div>
 | |
| <?php } ?>
 | |
| 
 | |
| 
 | |
| 
 | |
|                                     </div>
 | |
|                                 </div>
 | |
|                             </div>
 | |
|                         </div>
 | |
| <?php } ?>
 | |
| 
 | |
| 
 | |
|                     </div>
 | |
|                 </div>
 | |
|                 <!-- /widget "config" -->
 |