view.ctp 1.97 KB

<div class="formules view">
    <h2>Détail formule</h2>
    <table style="margin-bottom: 30px;">
    
    
    <tr><th style="width: 250px;"></th><th></th></tr>
    <?php 
    
    $displayElement(__('Id'), h($formule->id));
    $displayElement(__('Nom mesure'), $formule->has('nommesure') ? h($formule->nommesure) : '');
    $displayElement(__('Symbole'), h($formule->symbole));
    $displayElement(__('Unite'), h($formule->unite));
    $displayElement(__('Nombre variable'), h($formule->nbVariable));
	$displayElement(__('Formule'), h($formule->formule));
    ?>
    
	</table>
	
		<h3 id="t_variables" style="cursor: pointer;">
			<i class="icon-chevron-down" style="font-size: 14px;" id="i_variables"></i> 
			<span style="text-decoration: underline;">Variable(s) lié(s) à la formule (<?= count($formule->variables) ?>)</span>
		</h3>
		<div id="fichiers" style="margin-bottom: 20px;">

        <?php if (!empty($formule->variables)) { ?>
        <table> 
		<tr> 
			<th><?= __('N°') ?></th>
			<th><?= __('Symbole grandeur physique') ?></th>
            <th><?= __('Symbole unite mesure') ?></th> 
			<th><?= __('Nom grandeur physique') ?></th> 
			<th><?= __('Domaine definition') ?></th> 
			<th><?= __('Derivé partielle') ?></th> 
		</tr> 	
		<?php $i=1; ?>		   
			
		<?php foreach ($formule->variables as $variable): 
		
		
		?>
		<tr>		   
			<td><?= $i ?></td>
			<td><?= $variable->symbolegrandeurphysique ?></td>
			<td><?= $variable->symboleunitemesure ?></td>
			<td><?= $variable->nomgrandeurphysique ?></td>
		    <td><?= $variable->domainedef ?></td>
			<td><?= $variable->derivepartielle ?></td>
			<?php $i++; ?>
        </tr>
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucune variable pour ce matériel.'; } ?>
        </div>
	
	
	</div>
    	
    	<div class="actions">
			<?php echo $this->element('menu') ?>
			<?php echo $this->element('menu_view', 
			[ 'pluralHumanName' => 'Formules',
			'singularHumanName' => 'Formule',
			'lien' => $formule->id ]) ?>
		</div>