32 lines
675 B
PHTML
32 lines
675 B
PHTML
|
<fieldset>
|
||
|
<legend>Critères</legend>
|
||
|
|
||
|
<?php foreach ( $this->criteres as $criteres ) { ?>
|
||
|
<div>
|
||
|
<h3><?=$criteres['label']?></h3>
|
||
|
<?php if (is_string($criteres['in'])) {?>
|
||
|
<div><?=$criteres['in']?></div>
|
||
|
<?php } else {?>
|
||
|
|
||
|
<?php if ( is_array($criteres['in']) && count($criteres['in'])>0 ) { ?>
|
||
|
<div>
|
||
|
<p>Inclus :</p>
|
||
|
<?php foreach( $criteres['in'] as $item ) {?>
|
||
|
<p><?=$item?></p>
|
||
|
<?php }?>
|
||
|
</div>
|
||
|
<?php }?>
|
||
|
|
||
|
<?php if ( is_array($criteres['ex']) && count($criteres['ex'])>0 ) { ?>
|
||
|
<div>
|
||
|
<p>Exclus :</p>
|
||
|
<?php foreach( $criteres['ex'] as $item ) {?>
|
||
|
<p><?=$item?></p>
|
||
|
<?php }?>
|
||
|
</div>
|
||
|
<?php }?>
|
||
|
|
||
|
<?php }?>
|
||
|
</div>
|
||
|
<?php }?>
|
||
|
</fieldset>
|