Blame view

src/Template/Formules/view.ctp 1.98 KB
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
1
2

<div class="formules view">
63c3cb16   epallier   Nombreux petits b...
3
4
5
6
7
8
9
10
11
	<h2>Détail formule</h2>
	<table style="margin-bottom: 30px;">


		<tr>
			<th style="width: 250px;"></th>
			<th></th>
		</tr>
    <?php
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
12
13
14
15
16
    $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));
63c3cb16   epallier   Nombreux petits b...
17
    $displayElement(__('Formule'), h($formule->formule));
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
18
19
20
    ?>
    
	</table>
63c3cb16   epallier   Nombreux petits b...
21
22
23
24
25
26

	<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;">
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
27
28

        <?php if (!empty($formule->variables)) { ?>
63c3cb16   epallier   Nombreux petits b...
29
30
31
32
33
34
35
36
37
        <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> 	
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
38
39
		<?php $i=1; ?>		   
			
63c3cb16   epallier   Nombreux petits b...
40
41
42
43
44
45
46
47
48
49
50
51
		<?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>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
52
53
54
55
56
57
			<?php $i++; ?>
        </tr>
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucune variable pour ce matériel.'; } ?>
        </div>
63c3cb16   epallier   Nombreux petits b...
58
59
60
61


</div>

b2dade50   Prugniel   modifs Jeanne boo...
62
<!--
63c3cb16   epallier   Nombreux petits b...
63
<div class="actions">
b2dade50   Prugniel   modifs Jeanne boo...
64
65
			<php echo $this->element('menu') ?>
			<php
63c3cb16   epallier   Nombreux petits b...
66
67
68
69
70
71

echo $this->element('menu_view', [
    'pluralHumanName' => 'Formules',
    'singularHumanName' => 'Formule',
    'lien' => $formule->id
])?>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
72
		</div>
b2dade50   Prugniel   modifs Jeanne boo...
73
-->