Task #0000839: Réécriture de la procédure d'installation

Setup.php en partie réécrit
Tous les tags <? ont été changés en <?php pour les servers mutualisés
This commit is contained in:
Dany De Bontridder 2013-05-16 21:34:17 +00:00
parent 9e950ba8bc
commit e6a2f2935d
84 changed files with 929 additions and 927 deletions

View file

@ -1,9 +1,9 @@
<fieldset>
<div id="jrn_name_div">
<h2 class="title" id="jrn_name"> <?=$this->get_name()?></h2>
<h2 class="title" id="jrn_name"> <?php echo $this->get_name()?></h2>
</div>
<legend><?=$f_legend ?> </legend>
<?
<legend><?php echo $f_legend ?> </legend>
<?php
$wchdate=new ISelect('chdate');
$wchdate->value=array(
array('value'=>1,'label'=>"Avec date d'extrait"),
@ -12,37 +12,37 @@
$wchdate->selected=(isset($chdate))?$chdate:1;
$wchdate->javascript='onchange="show_fin_chdate(\'chdate\')"';
?>
<?=$wchdate->input();?>
<?php echo $wchdate->input();?>
<span id="chdate_ext">
<?=_('Date').' '.$f_date ?>
<?php echo _('Date').' '.$f_date ?>
</span>
<?=$f_period?><br>
<?=$f_jrn?><br>
<?=_('Banque')?><?=$f_bank ?>
<?php echo $f_period?><br>
<?php echo $f_jrn?><br>
<?php echo _('Banque')?><?php echo $f_bank ?>
</fieldset>
<fieldset>
<legend><?=$f_legend_detail?></legend>
<fieldset><legend><?=_('Extrait de compte')?></legend>
<?=_('Numéro extrait')?> <?=$f_extrait?>
<?=_('Solde début') ?> <?=$wFirst->input();?>
<?=_('Solde Fin')?> <?=$wLast->input();?>
<legend><?php echo $f_legend_detail?></legend>
<fieldset><legend><?php echo _('Extrait de compte')?></legend>
<?php echo _('Numéro extrait')?> <?php echo $f_extrait?>
<?php echo _('Solde début') ?> <?php echo $wFirst->input();?>
<?php echo _('Solde Fin')?> <?php echo $wLast->input();?>
</fieldset>
<?=$str_add_button?>
<fieldset><legend><?=_('Opérations')?></legend>
<?php echo $str_add_button?>
<fieldset><legend><?php echo _('Opérations')?></legend>
<table id="fin_item" width="100%" border="0">
<tr>
<th id="thdate" style="display:none;text-align: left"><?=_('Date')?><?=HtmlInput::infobulle(16)?></TH>
<th id="thdate" style="display:none;text-align: left"><?php echo _('Date')?><?php echo HtmlInput::infobulle(16)?></TH>
<th style="text-align: left;width: auto">code<?HtmlInput::infobulle(0)?></TH>
<th style="text-align: left"><?=_('Fiche')?></TH>
<th style="text-align: left"><?=_('Commentaire')?></TH>
<th style="text-align: left"><?=_('Montant')?></TH>
<th style="text-align: left;width:auto"colspan="2"> <?=_('Op. Concernée(s)')?></th>
<th style="text-align: left"><?php echo _('Fiche')?></TH>
<th style="text-align: left"><?php echo _('Commentaire')?></TH>
<th style="text-align: left"><?php echo _('Montant')?></TH>
<th style="text-align: left;width:auto"colspan="2"> <?php echo _('Op. Concernée(s)')?></th>
</tr>
<?
<?php
$i=0;
foreach ($array as $item) {