Subversion Repositories Applications.referentiel

Compare Revisions

Ignore whitespace Rev 196 → Rev 195

/trunk/scripts/modules/versionnage/squelettes/bdnt.tpl.tsv
New file
0,0 → 1,6
<?=implode("\t", $champs)?>
 
<?php foreach ($noms as $nom_infos) : ?>
<?=implode("\t", $nom_infos)?>
 
<?php endforeach; ?>
/trunk/scripts/modules/versionnage/squelettes/bdnt_partiel.tpl.tsv
New file
0,0 → 1,10
<?=implode("\t", $champs_partiel)?>
 
<?php foreach ($noms as $nom_infos) :
if (!isset($nom_infos['exclure_taxref']) || $nom_infos['exclure_taxref'] != '1') :
foreach ($champs_partiel as $champ) :
echo $nom_infos[$champ];
echo ($dernier_champ == $champ) ? "\n" : "\t";
endforeach;
endif;
endforeach; ?>