view.ctp
1.98 KB
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
64
65
66
67
68
69
70
71
72
73
<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>
-->